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

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

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.h
diff --git a/third_party/WebKit/Source/web/RemoteFrameOwner.h b/third_party/WebKit/Source/web/RemoteFrameOwner.h
index 9a5d150203a362f169b891cc39c2003cdc452cad..922fee40d0b42203ada07e3efdef22e3eb2669e0 100644
--- a/third_party/WebKit/Source/web/RemoteFrameOwner.h
+++ b/third_party/WebKit/Source/web/RemoteFrameOwner.h
@@ -24,8 +24,9 @@ class RemoteFrameOwner final
public:
static RemoteFrameOwner* create(
SandboxFlags flags,
+ const WebParsedFeaturePolicy& containerPolicy,
const WebFrameOwnerProperties& frameOwnerProperties) {
- return new RemoteFrameOwner(flags, frameOwnerProperties);
+ return new RemoteFrameOwner(flags, containerPolicy, frameOwnerProperties);
}
// FrameOwner overrides:
@@ -52,6 +53,9 @@ class RemoteFrameOwner final
const WebVector<WebFeaturePolicyFeature>& allowedFeatures() const override {
return m_allowedFeatures;
}
+ const WebParsedFeaturePolicy& containerPolicy() const override {
+ return m_containerPolicy;
+ }
void setBrowsingContextContainerName(const WebString& name) {
m_browsingContextContainerName = name;
@@ -71,11 +75,16 @@ class RemoteFrameOwner final
const WebVector<WebFeaturePolicyFeature>& allowedFeatures) {
m_allowedFeatures = allowedFeatures;
}
+ void setContainerPolicy(const WebParsedFeaturePolicy& containerPolicy) {
+ m_containerPolicy = containerPolicy;
+ }
DECLARE_VIRTUAL_TRACE();
private:
- RemoteFrameOwner(SandboxFlags, const WebFrameOwnerProperties&);
+ RemoteFrameOwner(SandboxFlags,
+ const WebParsedFeaturePolicy&,
+ const WebFrameOwnerProperties&);
// Intentionally private to prevent redundant checks when the type is
// already HTMLFrameOwnerElement.
@@ -93,6 +102,7 @@ class RemoteFrameOwner final
bool m_isDisplayNone;
WebString m_csp;
WebVector<WebFeaturePolicyFeature> m_allowedFeatures;
+ WebParsedFeaturePolicy m_containerPolicy;
};
DEFINE_TYPE_CASTS(RemoteFrameOwner,

Powered by Google App Engine
This is Rietveld 408576698