| Index: third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp
|
| diff --git a/third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp b/third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp
|
| index a954edf5bf42f080c9da7b9dc9fccdc2685f55f1..ffe5e93dafde63cdbc55cb4acdc360f085acd382 100644
|
| --- a/third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp
|
| @@ -264,10 +264,10 @@ bool FrameLoaderClientImpl::allowMedia(const KURL& mediaURL)
|
| return true;
|
| }
|
|
|
| -bool FrameLoaderClientImpl::allowDisplayingInsecureContent(bool enabledPerSettings, SecurityOrigin* context, const KURL& url)
|
| +bool FrameLoaderClientImpl::allowDisplayingInsecureContent(bool enabledPerSettings, const KURL& url)
|
| {
|
| if (m_webFrame->contentSettingsClient())
|
| - return m_webFrame->contentSettingsClient()->allowDisplayingInsecureContent(enabledPerSettings, WebSecurityOrigin(context), WebURL(url));
|
| + return m_webFrame->contentSettingsClient()->allowDisplayingInsecureContent(enabledPerSettings, WebURL(url));
|
|
|
| return enabledPerSettings;
|
| }
|
|
|