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

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

Issue 2483703002: Replicate feature policy headers to remote frames (Closed)
Patch Set: Remove layout test; better coverage with unit tests Created 4 years, 1 month 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/WebRemoteFrameImpl.cpp
diff --git a/third_party/WebKit/Source/web/WebRemoteFrameImpl.cpp b/third_party/WebKit/Source/web/WebRemoteFrameImpl.cpp
index a52e7e3e2a18b7785b5da02dde7a73e02edbd789..83256796abfc75d8aeb4ce0ab09a10556f33faaf 100644
--- a/third_party/WebKit/Source/web/WebRemoteFrameImpl.cpp
+++ b/third_party/WebKit/Source/web/WebRemoteFrameImpl.cpp
@@ -432,6 +432,19 @@ void WebRemoteFrameImpl::setReplicatedName(const WebString& name,
frame()->tree().setPrecalculatedName(name, uniqueName);
}
+void WebRemoteFrameImpl::setReplicatedFeaturePolicyHeader(
+ const WebString& headerValue) const {
+ if (RuntimeEnabledFeatures::featurePolicyEnabled()) {
+ SecurityContext* parentSecurityContext = nullptr;
+ if (parent()) {
+ Frame* parentFrame = frame()->client()->parent();
+ parentSecurityContext = parentFrame->securityContext();
+ }
+ frame()->securityContext()->setFeaturePolicyFromHeader(
+ headerValue, parentSecurityContext);
+ }
+}
+
void WebRemoteFrameImpl::addReplicatedContentSecurityPolicyHeader(
const WebString& headerValue,
WebContentSecurityPolicyType type,

Powered by Google App Engine
This is Rietveld 408576698