31 lines
1.2 KiB
Diff
31 lines
1.2 KiB
Diff
|
From bbfe2665923225b4a7c436ba2b6c7e5f695f2e52 Mon Sep 17 00:00:00 2001
|
||
|
From: David Landell <landell@vewd.com>
|
||
|
Date: Fri, 13 Sep 2019 12:24:13 +0000
|
||
|
Subject: [PATCH] Add missing include for unique_ptr
|
||
|
MIME-Version: 1.0
|
||
|
Content-Type: text/plain; charset=UTF-8
|
||
|
Content-Transfer-Encoding: 8bit
|
||
|
|
||
|
Change-Id: I614d2f42868d563eb6a92dfb2aae08286e20d687
|
||
|
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1803137
|
||
|
Reviewed-by: Henrik Boström <hbos@chromium.org>
|
||
|
Commit-Queue: Henrik Boström <hbos@chromium.org>
|
||
|
Cr-Commit-Position: refs/heads/master@{#696355}
|
||
|
---
|
||
|
third_party/blink/public/platform/web_rtc_rtp_source.h | 2 ++
|
||
|
1 file changed, 2 insertions(+)
|
||
|
|
||
|
diff --git a/third_party/blink/public/platform/web_rtc_rtp_source.h b/third_party/blink/public/platform/web_rtc_rtp_source.h
|
||
|
index 959440f7a5..c3fd5421aa 100644
|
||
|
--- a/third_party/blink/public/platform/web_rtc_rtp_source.h
|
||
|
+++ b/third_party/blink/public/platform/web_rtc_rtp_source.h
|
||
|
@@ -5,6 +5,8 @@
|
||
|
#ifndef THIRD_PARTY_BLINK_PUBLIC_PLATFORM_WEB_RTC_RTP_SOURCE_H_
|
||
|
#define THIRD_PARTY_BLINK_PUBLIC_PLATFORM_WEB_RTC_RTP_SOURCE_H_
|
||
|
|
||
|
+#include <memory>
|
||
|
+
|
||
|
#include "base/optional.h"
|
||
|
#include "third_party/blink/public/platform/web_common.h"
|
||
|
|