| 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 d8c321bcf31482d20ff7485f224182db684515ca..a53e02989f9536c2624f5821acd5f043313cddee 100644
|
| --- a/content/public/browser/content_browser_client.cc
|
| +++ b/content/public/browser/content_browser_client.cc
|
| @@ -7,6 +7,7 @@
|
| #include "base/files/file_path.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"
|
| @@ -344,6 +345,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;
|
|
|