| Index: third_party/WebKit/Source/core/loader/FrameLoaderClient.h
|
| diff --git a/third_party/WebKit/Source/core/loader/FrameLoaderClient.h b/third_party/WebKit/Source/core/loader/FrameLoaderClient.h
|
| index 3f85998fdc4470a0d45d22f945db89fc9516f122..d83f852b862e786c887f7c4fc41eb504ec84af90 100644
|
| --- a/third_party/WebKit/Source/core/loader/FrameLoaderClient.h
|
| +++ b/third_party/WebKit/Source/core/loader/FrameLoaderClient.h
|
| @@ -185,7 +185,7 @@ public:
|
| virtual bool allowPlugins(bool enabledPerSettings) { return enabledPerSettings; }
|
| virtual bool allowImage(bool enabledPerSettings, const KURL&) { return enabledPerSettings; }
|
| virtual bool allowMedia(const KURL&) { return true; }
|
| - virtual bool allowDisplayingInsecureContent(bool enabledPerSettings, SecurityOrigin*, const KURL&) { return enabledPerSettings; }
|
| + virtual bool allowDisplayingInsecureContent(bool enabledPerSettings, const KURL&) { return enabledPerSettings; }
|
| virtual bool allowRunningInsecureContent(bool enabledPerSettings, SecurityOrigin*, const KURL&) { return enabledPerSettings; }
|
|
|
| // This callback notifies the client that the frame was about to run
|
|
|