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

Unified Diff: third_party/WebKit/Source/core/frame/LocalFrame.cpp

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/LocalFrame.cpp
diff --git a/third_party/WebKit/Source/core/frame/LocalFrame.cpp b/third_party/WebKit/Source/core/frame/LocalFrame.cpp
index 9d9f8536d57761b8a8a0b2b763ca10ea46c27793..9eca4d62c48ecfb234484b7d149b5b5456c0ffab 100644
--- a/third_party/WebKit/Source/core/frame/LocalFrame.cpp
+++ b/third_party/WebKit/Source/core/frame/LocalFrame.cpp
@@ -346,6 +346,11 @@ bool LocalFrame::prepareForCommit()
return loader().prepareForCommit();
}
+bool LocalFrame::shouldEnforceStrictMixedContentChecking() const
+{
+ return document()->shouldEnforceStrictMixedContentChecking();
+}
+
SecurityContext* LocalFrame::securityContext() const
{
return document();

Powered by Google App Engine
This is Rietveld 408576698