41 lines
1.7 KiB
Diff
41 lines
1.7 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
|
||
|
|
||
|
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}
|
||
|
---
|
||
|
|
||
|
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 959440f..c3fd542 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"
|
||
|
|
||
|
Missing include due to reverting ProfileManagerObserver
|
||
|
---
|
||
|
|
||
|
diff --git a/chrome/browser/web_applications/extensions/bookmark_app_util.cc b/chrome/browser/web_applications/extensions/bookmark_app_util.cc
|
||
|
index ee4b70a..b31e5f5 100644
|
||
|
--- a/chrome/browser/web_applications/extensions/bookmark_app_util.cc
|
||
|
+++ b/chrome/browser/web_applications/extensions/bookmark_app_util.cc
|
||
|
@@ -7,6 +7,7 @@
|
||
|
#include "base/strings/string_piece.h"
|
||
|
#include "base/values.h"
|
||
|
#include "chrome/browser/extensions/extension_service.h"
|
||
|
+#include "chrome/browser/profiles/profile.h"
|
||
|
#include "chrome/browser/web_applications/components/app_registrar.h"
|
||
|
#include "chrome/browser/web_applications/components/web_app_provider_base.h"
|
||
|
#include "chrome/common/chrome_features.h"
|