Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(172)

Unified Diff: third_party/WebKit/Source/web/tests/FrameTestHelpers.cpp

Issue 2797813002: Replicate feature policy container policies. (Closed)
Patch Set: Cleanup, reponding to review comments Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);

Powered by Google App Engine
This is Rietveld 408576698