Index: content/browser/frame_host/render_frame_host_impl.h |
diff --git a/content/browser/frame_host/render_frame_host_impl.h b/content/browser/frame_host/render_frame_host_impl.h |
index 482e2e3748373d9b0e2880eaa54f9e34c0adf00b..dee0270a9de5f41cc4cd04cd4b3efc82feada694 100644 |
--- a/content/browser/frame_host/render_frame_host_impl.h |
+++ b/content/browser/frame_host/render_frame_host_impl.h |
@@ -246,6 +246,7 @@ class CONTENT_EXPORT RenderFrameHostImpl |
const std::string& frame_name, |
const std::string& frame_unique_name, |
blink::WebSandboxFlags sandbox_flags, |
+ const ParsedFeaturePolicyHeader& container_policy, |
const FrameOwnerProperties& frame_owner_properties); |
// Called when this frame tries to open a new WebContents, e.g. via a script |
@@ -737,8 +738,10 @@ class CONTENT_EXPORT RenderFrameHostImpl |
void OnEnforceInsecureRequestPolicy(blink::WebInsecureRequestPolicy policy); |
void OnUpdateToUniqueOrigin(bool is_potentially_trustworthy_unique_origin); |
- void OnDidChangeSandboxFlags(int32_t frame_routing_id, |
- blink::WebSandboxFlags flags); |
+ void OnDidChangeFramePolicy( |
+ int32_t frame_routing_id, |
+ blink::WebSandboxFlags flags, |
+ const ParsedFeaturePolicyHeader& container_policy); |
void OnDidChangeFrameOwnerProperties(int32_t frame_routing_id, |
const FrameOwnerProperties& properties); |
void OnUpdateTitle(const base::string16& title, |