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

Unified Diff: third_party/WebKit/Source/core/dom/Document.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: alexmos test comments 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/dom/Document.cpp
diff --git a/third_party/WebKit/Source/core/dom/Document.cpp b/third_party/WebKit/Source/core/dom/Document.cpp
index 1e47f442157510b83b9c9d82cd55cf388366721c..1a5c04ea402a87cad7c82455b83734724933b8f1 100644
--- a/third_party/WebKit/Source/core/dom/Document.cpp
+++ b/third_party/WebKit/Source/core/dom/Document.cpp
@@ -447,6 +447,7 @@ Document::Document(const DocumentInit& initializer, DocumentClassFlags documentC
, m_styleRecalcElementCounter(0)
, m_parserSyncPolicy(AllowAsynchronousParsing)
, m_nodeCount(0)
+ , m_strictMixedContentCheckingEnforced(false)
{
if (m_frame) {
ASSERT(m_frame->page());
@@ -5767,6 +5768,13 @@ WebTaskRunner* Document::timerTaskRunner() const
return Platform::current()->currentThread()->scheduler()->timerTaskRunner();
}
+void Document::enforceStrictMixedContentChecking()
+{
+ securityContext().setShouldEnforceStrictMixedContentChecking(true);
+ if (frame())
+ frame()->loader().client()->didEnforceStrictMixedContentChecking();
+}
+
DEFINE_TRACE(Document)
{
#if ENABLE(OILPAN)

Powered by Google App Engine
This is Rietveld 408576698