From ef41260060293cf53c279b675c470341fd635a4e Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Wed, 25 Dec 2019 15:41:16 -0800 Subject: [PATCH] chromium: Include cstddef for size_t definition Include ctsdint for uintXX_t Fixes In file included from ../../../../git/src/3rdparty/chromium/third_party/webrtc/modules/audio_processing/aec3/clockdrift_detector.cc:10: ../../../../git/src/3rdparty/chromium/third_party/webrtc/modules/audio_processing/aec3/clockdrift_detector.h:34:3: error: 'size_t' does not name a type 34 | size_t stability_counter_; | ^~~~~~ Upstream-Status: Pending Signed-off-by: Khem Raj ccc Signed-off-by: Khem Raj --- .../webrtc/modules/audio_processing/aec3/clockdrift_detector.h | 1 + .../third_party/webrtc/modules/video_coding/decoding_state.h | 1 + 2 files changed, 2 insertions(+) diff --git a/chromium/third_party/webrtc/modules/audio_processing/aec3/clockdrift_detector.h b/chromium/third_party/webrtc/modules/audio_processing/aec3/clockdrift_detector.h index 22528c94892..69e624e8b19 100644 --- a/chromium/third_party/webrtc/modules/audio_processing/aec3/clockdrift_detector.h +++ b/chromium/third_party/webrtc/modules/audio_processing/aec3/clockdrift_detector.h @@ -12,6 +12,7 @@ #define MODULES_AUDIO_PROCESSING_AEC3_CLOCKDRIFT_DETECTOR_H_ #include +#include namespace webrtc { diff --git a/chromium/third_party/webrtc/modules/video_coding/decoding_state.h b/chromium/third_party/webrtc/modules/video_coding/decoding_state.h index b87fb2d0345..b3faffcfc79 100644 --- a/chromium/third_party/webrtc/modules/video_coding/decoding_state.h +++ b/chromium/third_party/webrtc/modules/video_coding/decoding_state.h @@ -14,6 +14,7 @@ #include #include #include +#include namespace webrtc {