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 6dceeae3b93b7ebbed8443d483a5b2e135a358d3..332643d3e5ba9f857f7b2afc47657159ff954667 100644 |
--- a/third_party/WebKit/Source/core/loader/FrameLoaderClient.h |
+++ b/third_party/WebKit/Source/core/loader/FrameLoaderClient.h |
@@ -197,10 +197,14 @@ 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, const KURL&) { return enabledPerSettings; } |
virtual bool allowRunningInsecureContent(bool enabledPerSettings, SecurityOrigin*, const KURL&) { return enabledPerSettings; } |
virtual bool allowAutoplay(bool defaultValue) { return defaultValue; } |
+ // Reports that passive mixed content was found at the provided URL. It may |
+ // or may not be actually displayed later, what would be flagged by |
+ // didDisplayInsecureContent. |
+ virtual void passiveInsecureContentFound(const KURL&) {} |
+ |
// This callback notifies the client that the frame was about to run |
// JavaScript but did not because allowScript returned false. We |
// have a separate callback here because there are a number of places |