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

Unified Diff: third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp

Issue 1723753002: Make Document::isSecureContext() work for OOPIFs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix WebRemoteFrameImpl assert Created 4 years, 9 months 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/web/FrameLoaderClientImpl.cpp
diff --git a/third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp b/third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp
index 2e93627c842796af150bcea01a2b9934865c22fb..109e1868aa98a68eef714a39fbbb7ccf0eff0798 100644
--- a/third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp
+++ b/third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp
@@ -914,6 +914,13 @@ void FrameLoaderClientImpl::didEnforceStrictMixedContentChecking()
m_webFrame->client()->didEnforceStrictMixedContentChecking();
}
+void FrameLoaderClientImpl::didSetUniqueOriginPotentiallyTrustworthy()
+{
+ if (!m_webFrame->client())
+ return;
+ m_webFrame->client()->didSetUniqueOriginPotentiallyTrustworthy();
+}
+
void FrameLoaderClientImpl::didChangeSandboxFlags(Frame* childFrame, SandboxFlags flags)
{
if (!m_webFrame->client())

Powered by Google App Engine
This is Rietveld 408576698