65 lines
2.1 KiB
Diff
65 lines
2.1 KiB
Diff
From e473f41284ccc8fa4bc4622d087194b18a1ec23a Mon Sep 17 00:00:00 2001
|
|
From: Stephan Hartmann <stha09@googlemail.com>
|
|
Date: Tue, 7 Apr 2020 16:37:10 +0000
|
|
Subject: [PATCH] GCC: fix includes for gcc-10
|
|
|
|
---
|
|
chrome/browser/search/background/ntp_backgrounds.h | 1 +
|
|
third_party/webrtc/call/rtx_receive_stream.h | 1 +
|
|
.../webrtc/modules/audio_processing/aec3/clockdrift_detector.h | 1 +
|
|
ui/gfx/linux/drm_util_linux.h | 2 ++
|
|
5 files changed, 6 insertions(+)
|
|
|
|
diff --git a/chrome/browser/search/background/ntp_backgrounds.h b/chrome/browser/search/background/ntp_backgrounds.h
|
|
index 7afc0a2..ea5818e 100644
|
|
--- a/chrome/browser/search/background/ntp_backgrounds.h
|
|
+++ b/chrome/browser/search/background/ntp_backgrounds.h
|
|
@@ -6,6 +6,7 @@
|
|
#define CHROME_BROWSER_SEARCH_BACKGROUND_NTP_BACKGROUNDS_H_
|
|
|
|
#include <array>
|
|
+#include <cstddef>
|
|
|
|
class GURL;
|
|
|
|
diff --git a/third_party/webrtc/call/rtx_receive_stream.h b/third_party/webrtc/call/rtx_receive_stream.h
|
|
index 8ffa440..113a816 100644
|
|
--- a/third_party/webrtc/call/rtx_receive_stream.h
|
|
+++ b/third_party/webrtc/call/rtx_receive_stream.h
|
|
@@ -12,6 +12,7 @@
|
|
#define CALL_RTX_RECEIVE_STREAM_H_
|
|
|
|
#include <map>
|
|
+#include <cstdint>
|
|
|
|
#include "call/rtp_packet_sink_interface.h"
|
|
|
|
diff --git a/third_party/webrtc/modules/audio_processing/aec3/clockdrift_detector.h b/third_party/webrtc/modules/audio_processing/aec3/clockdrift_detector.h
|
|
index 22528c9..69e624e 100644
|
|
--- a/third_party/webrtc/modules/audio_processing/aec3/clockdrift_detector.h
|
|
+++ b/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/ui/gfx/linux/drm_util_linux.h b/ui/gfx/linux/drm_util_linux.h
|
|
index 86ff2eb..990f12c 100644
|
|
--- a/ui/gfx/linux/drm_util_linux.h
|
|
+++ b/ui/gfx/linux/drm_util_linux.h
|
|
@@ -7,6 +7,8 @@
|
|
|
|
#include "ui/gfx/buffer_types.h"
|
|
|
|
+#include <cstdint>
|
|
+
|
|
namespace ui {
|
|
|
|
int GetFourCCFormatFromBufferFormat(gfx::BufferFormat format);
|
|
--
|
|
2.24.1
|
|
|