Index: third_party/WebKit/Source/web/tests/FrameTestHelpers.cpp |
diff --git a/third_party/WebKit/Source/web/tests/FrameTestHelpers.cpp b/third_party/WebKit/Source/web/tests/FrameTestHelpers.cpp |
index e2e57a32eac8e6861754ae9f417a530a151c1f90..96daefb5956d9513837dcdf2c0af0cb74ed26fbe 100644 |
--- a/third_party/WebKit/Source/web/tests/FrameTestHelpers.cpp |
+++ b/third_party/WebKit/Source/web/tests/FrameTestHelpers.cpp |
@@ -166,7 +166,7 @@ WebLocalFrameImpl* createLocalChild(WebRemoteFrame* parent, |
WebLocalFrameImpl* frame = toWebLocalFrameImpl(parent->createLocalChild( |
WebTreeScopeType::Document, name, WebSandboxFlags::None, client, |
static_cast<TestWebFrameClient*>(client)->interfaceProvider(), nullptr, |
- previousSibling, properties, nullptr)); |
+ previousSibling, WebParsedFeaturePolicy(), properties, nullptr)); |
if (!widgetClient) |
widgetClient = defaultWebWidgetClient(); |
@@ -178,9 +178,9 @@ WebLocalFrameImpl* createLocalChild(WebRemoteFrame* parent, |
WebRemoteFrameImpl* createRemoteChild(WebRemoteFrame* parent, |
WebRemoteFrameClient* client, |
const WebString& name) { |
- return toWebRemoteFrameImpl( |
- parent->createRemoteChild(WebTreeScopeType::Document, name, |
- WebSandboxFlags::None, client, nullptr)); |
+ return toWebRemoteFrameImpl(parent->createRemoteChild( |
+ WebTreeScopeType::Document, name, WebSandboxFlags::None, |
+ WebParsedFeaturePolicy(), client, nullptr)); |
} |
WebViewHelper::WebViewHelper(SettingOverrider* settingOverrider) |
@@ -305,6 +305,7 @@ WebLocalFrame* TestWebFrameClient::createChildFrame( |
const WebString& name, |
const WebString& fallbackName, |
WebSandboxFlags sandboxFlags, |
+ const WebParsedFeaturePolicy& containerPolicy, |
const WebFrameOwnerProperties& frameOwnerProperties) { |
WebLocalFrame* frame = |
WebLocalFrame::create(scope, this, interfaceProvider(), nullptr); |