From c402658c08d68e662d0b15f1c5dea2b8e4e9044d Mon Sep 17 00:00:00 2001 From: Aleksei Kuzmin Date: Tue, 8 Aug 2017 00:01:59 +0300 Subject: [PATCH] Replicate feature policy container policies. https://codereview.chromium.org/2797813002 --- chromium_src/chrome/renderer/printing/print_web_view_helper.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/chromium_src/chrome/renderer/printing/print_web_view_helper.cc b/chromium_src/chrome/renderer/printing/print_web_view_helper.cc index 66ec64e523ca..201e84028c96 100644 --- a/chromium_src/chrome/renderer/printing/print_web_view_helper.cc +++ b/chromium_src/chrome/renderer/printing/print_web_view_helper.cc @@ -401,6 +401,7 @@ class PrepareFrameAndViewForPrint : public blink::WebViewClient, const blink::WebString& name, const blink::WebString& unique_name, blink::WebSandboxFlags sandbox_flags, + const blink::WebParsedFeaturePolicy& container_policy, const blink::WebFrameOwnerProperties& frame_owner_properties) override; private: @@ -555,6 +556,7 @@ blink::WebLocalFrame* PrepareFrameAndViewForPrint::CreateChildFrame( const blink::WebString& name, const blink::WebString& unique_name, blink::WebSandboxFlags sandbox_flags, + const blink::WebParsedFeaturePolicy& container_policy, const blink::WebFrameOwnerProperties& frame_owner_properties) { blink::WebLocalFrame* frame = blink::WebLocalFrame::Create( scope, this, nullptr, nullptr);