| 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 022ed818083f9b6edbb3d1e75d5d2a7245683acf..bac06c4896ad3d41161a7f6059f1b184be0af126 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,
|
|
|