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 1c1abfeafa230b5cf10b18b28150325d5e269c27..f35876c9519904b5e0146122bddef260db96e8e2 100644 |
--- a/third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp |
+++ b/third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp |
@@ -888,6 +888,13 @@ void FrameLoaderClientImpl::didChangeName(const String& name) |
m_webFrame->client()->didChangeName(m_webFrame, name); |
} |
+void FrameLoaderClientImpl::didChangeShouldEnforceStrictMixedContentChecking(bool shouldEnforce) |
+{ |
+ if (!m_webFrame->client()) |
+ return; |
+ m_webFrame->client()->didChangeShouldEnforceStrictMixedContentChecking(m_webFrame, shouldEnforce); |
+} |
+ |
void FrameLoaderClientImpl::didChangeSandboxFlags(Frame* childFrame, SandboxFlags flags) |
{ |
if (!m_webFrame->client()) |