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); |