| Index: third_party/WebKit/Source/web/WebFrame.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebFrame.cpp b/third_party/WebKit/Source/web/WebFrame.cpp
|
| index 89a33fd0ba39ed929698f0a8f40e2c83e1748942..deb8ec24cdfbc34fa330bcf723c46a9c422650d1 100644
|
| --- a/third_party/WebKit/Source/web/WebFrame.cpp
|
| +++ b/third_party/WebKit/Source/web/WebFrame.cpp
|
| @@ -14,6 +14,7 @@
|
| #include "core/page/Page.h"
|
| #include "platform/UserGestureIndicator.h"
|
| #include "platform/heap/Handle.h"
|
| +#include "public/platform/WebInsecureRequestPolicy.h"
|
| #include "public/web/WebElement.h"
|
| #include "public/web/WebFrameOwnerProperties.h"
|
| #include "public/web/WebSandboxFlags.h"
|
| @@ -131,7 +132,7 @@ void WebFrame::setFrameOwnerSandboxFlags(WebSandboxFlags flags)
|
|
|
| bool WebFrame::shouldEnforceStrictMixedContentChecking() const
|
| {
|
| - return toImplBase()->frame()->securityContext()->shouldEnforceStrictMixedContentChecking();
|
| + return toImplBase()->frame()->securityContext()->getInsecureRequestPolicy() & kBlockAllMixedContent;
|
| }
|
|
|
| void WebFrame::setFrameOwnerProperties(const WebFrameOwnerProperties& properties)
|
|
|