From 533788149c8b24d7da2702866594cd7a44c8f571 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 --- .../third_party/webrtc/modules/video_coding/decoding_state.h | 1 + 1 file changed, 1 insertion(+) 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 ec972949d89..2a76775cfb6 100644 --- a/chromium/third_party/webrtc/modules/video_coding/decoding_state.h +++ b/chromium/third_party/webrtc/modules/video_coding/decoding_state.h @@ -15,6 +15,7 @@ #include #include #include +#include namespace webrtc {