You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.6 KiB
40 lines
1.6 KiB
From 033c7aa2da1bc78347765d60c15843ece02ef4d8 Mon Sep 17 00:00:00 2001
|
|
From: Troy Dawson <tdawson@redhat.com>
|
|
Date: Tue, 11 Feb 2020 15:43:30 -0800
|
|
Subject: [PATCH] fix chromium headers
|
|
|
|
---
|
|
.../chromium/cc/base/list_container_helper.cc | 250 -----------------
|
|
.../chromium/cc/base/list_container_helper.h | 254 ++++++++++++++++++
|
|
.../aec3/clockdrift_detector.h | 1 +
|
|
.../modules/video_coding/decoding_state.h | 1 +
|
|
4 files changed, 256 insertions(+), 250 deletions(-)
|
|
|
|
diff --git a/src/3rdparty/chromium/third_party/webrtc/modules/audio_processing/aec3/clockdrift_detector.h b/src/3rdparty/chromium/third_party/webrtc/modules/audio_processing/aec3/clockdrift_detector.h
|
|
index 22528c948..69e624e8b 100644
|
|
--- a/src/3rdparty/chromium/third_party/webrtc/modules/audio_processing/aec3/clockdrift_detector.h
|
|
+++ b/src/3rdparty/chromium/third_party/webrtc/modules/audio_processing/aec3/clockdrift_detector.h
|
|
@@ -12,6 +12,7 @@
|
|
#define MODULES_AUDIO_PROCESSING_AEC3_CLOCKDRIFT_DETECTOR_H_
|
|
|
|
#include <array>
|
|
+#include <cstddef>
|
|
|
|
namespace webrtc {
|
|
|
|
diff --git a/src/3rdparty/chromium/third_party/webrtc/modules/video_coding/decoding_state.h b/src/3rdparty/chromium/third_party/webrtc/modules/video_coding/decoding_state.h
|
|
index b87fb2d03..ec972949d 100644
|
|
--- a/src/3rdparty/chromium/third_party/webrtc/modules/video_coding/decoding_state.h
|
|
+++ b/src/3rdparty/chromium/third_party/webrtc/modules/video_coding/decoding_state.h
|
|
@@ -11,6 +11,7 @@
|
|
#ifndef MODULES_VIDEO_CODING_DECODING_STATE_H_
|
|
#define MODULES_VIDEO_CODING_DECODING_STATE_H_
|
|
|
|
+#include <cstdint>
|
|
#include <map>
|
|
#include <set>
|
|
#include <vector>
|
|
--
|
|
2.24.1
|
|
|