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

Unified Diff: third_party/WebKit/Source/core/dom/Fullscreen.cpp

Issue 2636843003: Move most Feature Policy code into content/ (Closed)
Patch Set: Addressing review comments Created 3 years, 11 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
« no previous file with comments | « third_party/WebKit/Source/core/BUILD.gn ('k') | third_party/WebKit/Source/core/dom/SecurityContext.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/dom/Fullscreen.cpp
diff --git a/third_party/WebKit/Source/core/dom/Fullscreen.cpp b/third_party/WebKit/Source/core/dom/Fullscreen.cpp
index 5ead9962ce68a06a27485a7d5403b828ff7ffc93..0cf92bf96f40496afffe83cd9ebb1fe674a30fc6 100644
--- a/third_party/WebKit/Source/core/dom/Fullscreen.cpp
+++ b/third_party/WebKit/Source/core/dom/Fullscreen.cpp
@@ -50,6 +50,8 @@
#include "platform/ScopedOrientationChangeIndicator.h"
#include "platform/UserGestureIndicator.h"
+#include "public/platform/Platform.h"
+
namespace blink {
namespace {
@@ -126,14 +128,17 @@ bool fullscreenIsSupported(Document& document) {
// If FeaturePolicy is enabled, check the fullscreen is not disabled by
// policy in the parent frame.
if (fullscreenSupported &&
- parent->securityContext()->getFeaturePolicy()->isFeatureEnabled(
- kFullscreenFeature)) {
+ Platform::current()->isFeatureEnabledByPolicy(
+ parent->securityContext()->getFeaturePolicy(),
+ WebFeaturePolicyFeature::Fullscreen,
+ WebSecurityOrigin(frame->securityContext()->getSecurityOrigin()))) {
return true;
}
}
// Even if the iframe allowfullscreen attribute is not present, allow
// fullscreen to be enabled by feature policy.
- else if (isFeatureEnabledInFrame(kFullscreenFeature, frame)) {
+ else if (isFeatureEnabledInFrame(WebFeaturePolicyFeature::Fullscreen,
+ frame)) {
return true;
}
« no previous file with comments | « third_party/WebKit/Source/core/BUILD.gn ('k') | third_party/WebKit/Source/core/dom/SecurityContext.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698