| 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 a4cf01c86c88d4a30f8230bb0d00c1c050cf3224..8ed881ffab7e626324f8dda307d489d5027b5b03 100644
|
| --- a/content/public/browser/content_browser_client.cc
|
| +++ b/content/public/browser/content_browser_client.cc
|
| @@ -117,6 +117,17 @@ std::unique_ptr<media::CdmFactory> ContentBrowserClient::CreateCdmFactory() {
|
| return nullptr;
|
| }
|
|
|
| +void ContentBrowserClient::PassiveInsecureContentFound(
|
| + const GURL& resource_url) {}
|
| +
|
| +bool ContentBrowserClient::ShouldAllowRunningInsecureContent(
|
| + bool allowed_per_settings,
|
| + const url::Origin& origin,
|
| + const GURL& resource_url,
|
| + WebContents* web_contents) {
|
| + return false;
|
| +}
|
| +
|
| bool ContentBrowserClient::ShouldSwapProcessesForRedirect(
|
| BrowserContext* browser_context,
|
| const GURL& current_url,
|
|
|