Chromium Code Reviews| Index: content/renderer/render_frame_proxy.h |
| diff --git a/content/renderer/render_frame_proxy.h b/content/renderer/render_frame_proxy.h |
| index d8221430b4b546c804ac5e9ee21d3f73b50b013e..2a8a4c1758b86c0b61ebbdb4091c391607ed2e13 100644 |
| --- a/content/renderer/render_frame_proxy.h |
| +++ b/content/renderer/render_frame_proxy.h |
| @@ -11,6 +11,7 @@ |
| #include "ipc/ipc_listener.h" |
| #include "ipc/ipc_sender.h" |
| #include "third_party/WebKit/public/platform/WebFocusType.h" |
| +#include "third_party/WebKit/public/platform/WebInsecureRequestPolicy.h" |
| #include "third_party/WebKit/public/web/WebRemoteFrame.h" |
| #include "third_party/WebKit/public/web/WebRemoteFrameClient.h" |
| #include "url/origin.h" |
| @@ -168,7 +169,8 @@ class CONTENT_EXPORT RenderFrameProxy |
| void OnDidUpdateName(const std::string& name, const std::string& unique_name); |
| void OnAddContentSecurityPolicy(const ContentSecurityPolicyHeader& header); |
| void OnResetContentSecurityPolicy(); |
| - void OnEnforceStrictMixedContentChecking(bool should_enforce); |
| + void OnEnforceInsecureRequestPolicy( |
| + blink::WebInsecureRequestPolicy should_enforce); |
|
alexmos
2016/06/07 19:00:06
s/should_enforce/policy/
Mike West
2016/06/08 07:21:12
Done.
|
| void OnSetFrameOwnerProperties( |
| const blink::WebFrameOwnerProperties& properties); |
| void OnDidUpdateOrigin(const url::Origin& origin, |