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

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

Issue 2767983003: Initial Implementation of Iframe Attribute for Feature Policy (Part 4) (Closed)
Patch Set: Nit Created 3 years, 9 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 2cd5e93762e8d441f37b8bb9d0067302a94e46d3..218d6373fea198e466bed9213f9325e7961c269e 100644
--- a/third_party/WebKit/Source/core/loader/DocumentLoader.cpp
+++ b/third_party/WebKit/Source/core/loader/DocumentLoader.cpp
@@ -878,7 +878,8 @@ void setFeaturePolicy(Document* document, const String& featurePolicyHeader) {
WebParsedFeaturePolicy containerPolicy;
if (frame->owner()) {
containerPolicy = getContainerPolicyFromAllowedFeatures(
- frame->owner()->allowedFeatures(),
+ frame->owner()->allowedFeatures(), frame->owner()->allowFullscreen(),
+ frame->owner()->allowPaymentRequest(),
frame->securityContext()->getSecurityOrigin());
}
frame->securityContext()->initializeFeaturePolicy(

Powered by Google App Engine
This is Rietveld 408576698