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

Unified Diff: third_party/WebKit/Source/web/RemoteFrameOwner.cpp

Issue 2797813002: Replicate feature policy container policies. (Closed)
Patch Set: Fix ODR violation 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/RemoteFrameOwner.cpp
diff --git a/third_party/WebKit/Source/web/RemoteFrameOwner.cpp b/third_party/WebKit/Source/web/RemoteFrameOwner.cpp
index 1d7b14df3aa3809e5de1456ff6a1d7aff9b5ac77..7e99ee7429baf1ac7396f426563126d2cdff0d91 100644
--- a/third_party/WebKit/Source/web/RemoteFrameOwner.cpp
+++ b/third_party/WebKit/Source/web/RemoteFrameOwner.cpp
@@ -12,6 +12,7 @@ namespace blink {
RemoteFrameOwner::RemoteFrameOwner(
SandboxFlags flags,
+ const WebParsedFeaturePolicy& containerPolicy,
const WebFrameOwnerProperties& frameOwnerProperties)
: m_sandboxFlags(flags),
m_browsingContextContainerName(
@@ -23,7 +24,8 @@ RemoteFrameOwner::RemoteFrameOwner(
m_allowFullscreen(frameOwnerProperties.allowFullscreen),
m_allowPaymentRequest(frameOwnerProperties.allowPaymentRequest),
m_isDisplayNone(frameOwnerProperties.isDisplayNone),
- m_csp(frameOwnerProperties.requiredCsp) {}
+ m_csp(frameOwnerProperties.requiredCsp),
+ m_containerPolicy(containerPolicy) {}
DEFINE_TRACE(RemoteFrameOwner) {
visitor->trace(m_frame);

Powered by Google App Engine
This is Rietveld 408576698