Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(244)

Unified Diff: third_party/WebKit/Source/core/frame/RemoteFrame.h

Issue 1489253002: Plumb document's strict mixed content checking for RemoteFrames (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698