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

Unified Diff: third_party/WebKit/Source/core/loader/DocumentLoader.cpp

Issue 2797813002: Replicate feature policy container policies. (Closed)
Patch Set: Rebase after the great Blink rename 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/core/loader/DocumentLoader.cpp
diff --git a/third_party/WebKit/Source/core/loader/DocumentLoader.cpp b/third_party/WebKit/Source/core/loader/DocumentLoader.cpp
index 221b5d1b93bf9ac66a8b100a51fd0e962a2a2521..281b8656944a8ab9a724bd70874460fd0e2112c3 100644
--- a/third_party/WebKit/Source/core/loader/DocumentLoader.cpp
+++ b/third_party/WebKit/Source/core/loader/DocumentLoader.cpp
@@ -1014,11 +1014,8 @@ void SetFeaturePolicy(Document* document, const String& feature_policy_header) {
feature_policy_header, frame->GetSecurityContext()->GetSecurityOrigin(),
&messages);
WebParsedFeaturePolicy container_policy;
- if (frame->Owner()) {
- container_policy = GetContainerPolicyFromAllowedFeatures(
- frame->Owner()->AllowedFeatures(),
- frame->GetSecurityContext()->GetSecurityOrigin());
- }
+ if (frame->Owner())
+ container_policy = frame->Owner()->ContainerPolicy();
frame->GetSecurityContext()->InitializeFeaturePolicy(
parsed_header, container_policy, parent_feature_policy);

Powered by Google App Engine
This is Rietveld 408576698