| 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 7d3ee2056cb1247c5be7ab1cd725bc0787e2b8f0..3d9376fab485561ae2f3a79911f1ff2b9382ac65 100644
|
| --- a/third_party/WebKit/Source/core/dom/Fullscreen.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/Fullscreen.cpp
|
| @@ -29,7 +29,7 @@
|
|
|
| #include "core/dom/Fullscreen.h"
|
|
|
| -#include "bindings/core/v8/ConditionalFeatures.h"
|
| +#include "bindings/core/v8/ConditionalFeaturesForCore.h"
|
| #include "core/dom/Document.h"
|
| #include "core/dom/ElementTraversal.h"
|
| #include "core/dom/StyleEngine.h"
|
| @@ -86,8 +86,7 @@ bool allowedToUseFullscreen(const Frame* frame) {
|
|
|
| // 1. If FP, by itself, enables fullscreen in this document, then fullscreen
|
| // is allowed.
|
| - if (frame->securityContext()->getFeaturePolicy()->isFeatureEnabled(
|
| - kFullscreenFeature)) {
|
| + if (isFeatureEnabledInFrame(WebFeaturePolicyFeature::Fullscreen, frame)) {
|
| return true;
|
| }
|
|
|
|
|