| Index: content/public/browser/content_browser_client.cc
|
| diff --git a/content/public/browser/content_browser_client.cc b/content/public/browser/content_browser_client.cc
|
| index 09c7ce9a4f7ab296d0e7ea4e3270b2989397f601..a9ba450a46066a5a0874d758eb76475f98cdb351 100644
|
| --- a/content/public/browser/content_browser_client.cc
|
| +++ b/content/public/browser/content_browser_client.cc
|
| @@ -8,6 +8,7 @@
|
| #include "base/guid.h"
|
| #include "build/build_config.h"
|
| #include "content/public/browser/client_certificate_delegate.h"
|
| +#include "content/public/browser/vpn_service_proxy.h"
|
| #include "content/public/common/sandbox_type.h"
|
| #include "media/base/cdm_factory.h"
|
| #include "storage/browser/quota/quota_manager.h"
|
| @@ -345,6 +346,11 @@ bool ContentBrowserClient::IsPepperVpnProviderAPIAllowed(
|
| return false;
|
| }
|
|
|
| +std::unique_ptr<VpnServiceProxy> ContentBrowserClient::GetVpnServiceProxy(
|
| + BrowserContext* browser_context) {
|
| + return nullptr;
|
| +}
|
| +
|
| ui::SelectFilePolicy* ContentBrowserClient::CreateSelectFilePolicy(
|
| WebContents* web_contents) {
|
| return nullptr;
|
|
|