Index: third_party/WebKit/Source/core/frame/RemoteFrame.h |
diff --git a/third_party/WebKit/Source/core/frame/RemoteFrame.h b/third_party/WebKit/Source/core/frame/RemoteFrame.h |
index c12ec4b6011cd4b0a9087b7900d2de507aadd483..234576828613dd829932662f81a380ffc0af3412 100644 |
--- a/third_party/WebKit/Source/core/frame/RemoteFrame.h |
+++ b/third_party/WebKit/Source/core/frame/RemoteFrame.h |
@@ -40,6 +40,7 @@ public: |
void disconnectOwnerElement() override; |
bool prepareForCommit() override; |
bool shouldClose() override; |
+ bool shouldEnforceStrictMixedContentChecking() const override; |
// FIXME: Remove this method once we have input routing in the browser |
// process. See http://crbug.com/339659. |
@@ -55,6 +56,8 @@ public: |
RemoteFrameView* view() const; |
+ void setShouldEnforceStrictMixedContentChecking(bool); |
+ |
private: |
RemoteFrame(RemoteFrameClient*, FrameHost*, FrameOwner*); |
@@ -68,6 +71,7 @@ private: |
RefPtrWillBeMember<RemoteDOMWindow> m_domWindow; |
OwnPtrWillBeMember<WindowProxyManager> m_windowProxyManager; |
WebLayer* m_remotePlatformLayer; |
+ bool m_shouldEnforceStrictMixedContentChecking; |
}; |
inline RemoteFrameView* RemoteFrame::view() const |