| Index: third_party/WebKit/Source/web/tests/WebViewTest.cpp
|
| diff --git a/third_party/WebKit/Source/web/tests/WebViewTest.cpp b/third_party/WebKit/Source/web/tests/WebViewTest.cpp
|
| index 274ce6bd13507b7ebc400a1f98476ee9989c2166..2439d47790177724726cbe48e851528dc2565f12 100644
|
| --- a/third_party/WebKit/Source/web/tests/WebViewTest.cpp
|
| +++ b/third_party/WebKit/Source/web/tests/WebViewTest.cpp
|
| @@ -3145,6 +3145,7 @@ class CreateChildCounterFrameClient
|
| const WebString& name,
|
| const WebString& fallback_name,
|
| WebSandboxFlags,
|
| + const WebParsedFeaturePolicy&,
|
| const WebFrameOwnerProperties&) override;
|
|
|
| int Count() const { return count_; }
|
| @@ -3159,11 +3160,12 @@ WebLocalFrame* CreateChildCounterFrameClient::CreateChildFrame(
|
| const WebString& name,
|
| const WebString& fallback_name,
|
| WebSandboxFlags sandbox_flags,
|
| + const WebParsedFeaturePolicy& container_policy,
|
| const WebFrameOwnerProperties& frame_owner_properties) {
|
| ++count_;
|
| - return TestWebFrameClient::CreateChildFrame(parent, scope, name,
|
| - fallback_name, sandbox_flags,
|
| - frame_owner_properties);
|
| + return TestWebFrameClient::CreateChildFrame(
|
| + parent, scope, name, fallback_name, sandbox_flags, container_policy,
|
| + frame_owner_properties);
|
| }
|
|
|
| TEST_P(WebViewTest, ChangeDisplayMode) {
|
|
|