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

Unified Diff: third_party/WebKit/Source/web/WebFrame.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/WebFrame.cpp
diff --git a/third_party/WebKit/Source/web/WebFrame.cpp b/third_party/WebKit/Source/web/WebFrame.cpp
index 323ffa9709c18977163fdd417058897ed75206cd..7b66d737ec63d00b7fceaffaf6ea729311dd969d 100644
--- a/third_party/WebKit/Source/web/WebFrame.cpp
+++ b/third_party/WebKit/Source/web/WebFrame.cpp
@@ -135,6 +135,15 @@ void WebFrame::setFrameOwnerSandboxFlags(WebSandboxFlags flags) {
toRemoteFrameOwner(owner)->setSandboxFlags(static_cast<SandboxFlags>(flags));
}
+void WebFrame::setFrameOwnerContainerPolicy(
+ const blink::WebParsedFeaturePolicy& containerPolicy) {
+ // At the moment, this is only used to replicate the container policy for
+ // frames with a remote owner.
+ FrameOwner* owner = toImplBase()->frame()->owner();
+ DCHECK(owner);
+ toRemoteFrameOwner(owner)->setContainerPolicy(containerPolicy);
+}
+
WebInsecureRequestPolicy WebFrame::getInsecureRequestPolicy() const {
return toImplBase()->frame()->securityContext()->getInsecureRequestPolicy();
}

Powered by Google App Engine
This is Rietveld 408576698