OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "bindings/core/v8/ConditionalFeatures.h" | 5 #include "bindings/core/v8/ConditionalFeatures.h" |
6 | 6 |
7 #include "bindings/core/v8/ScriptState.h" | 7 #include "bindings/core/v8/ScriptState.h" |
8 #include "bindings/core/v8/V8Document.h" | 8 #include "bindings/core/v8/V8Document.h" |
9 #include "bindings/core/v8/V8HTMLLinkElement.h" | 9 #include "bindings/core/v8/V8HTMLLinkElement.h" |
10 #include "bindings/core/v8/V8Navigator.h" | 10 #include "bindings/core/v8/V8Navigator.h" |
11 #include "bindings/core/v8/V8Window.h" | 11 #include "bindings/core/v8/V8Window.h" |
12 #include "core/dom/ExecutionContext.h" | 12 #include "core/dom/ExecutionContext.h" |
13 #include "core/frame/LocalFrame.h" | 13 #include "core/frame/LocalFrame.h" |
14 #include "core/origin_trials/OriginTrialContext.h" | 14 #include "core/origin_trials/OriginTrialContext.h" |
15 | 15 |
| 16 #include "public/platform/Platform.h" |
| 17 |
16 namespace blink { | 18 namespace blink { |
17 | 19 |
18 void installConditionalFeaturesCore(const WrapperTypeInfo* wrapperTypeInfo, | 20 void installConditionalFeaturesCore(const WrapperTypeInfo* wrapperTypeInfo, |
19 const ScriptState* scriptState, | 21 const ScriptState* scriptState, |
20 v8::Local<v8::Object> prototypeObject, | 22 v8::Local<v8::Object> prototypeObject, |
21 v8::Local<v8::Function> interfaceObject) { | 23 v8::Local<v8::Function> interfaceObject) { |
22 // TODO(iclelland): Generate all of this logic at compile-time, based on the | 24 // TODO(iclelland): Generate all of this logic at compile-time, based on the |
23 // configuration of origin trial enabled attributes and interfaces in IDL | 25 // configuration of origin trial enabled attributes and interfaces in IDL |
24 // files. (crbug.com/615060) | 26 // files. (crbug.com/615060) |
25 ExecutionContext* executionContext = scriptState->getExecutionContext(); | 27 ExecutionContext* executionContext = scriptState->getExecutionContext(); |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 void installPendingConditionalFeaturesOnWindow(const ScriptState* scriptState) { | 82 void installPendingConditionalFeaturesOnWindow(const ScriptState* scriptState) { |
81 DCHECK(scriptState); | 83 DCHECK(scriptState); |
82 DCHECK(scriptState->context() == scriptState->isolate()->GetCurrentContext()); | 84 DCHECK(scriptState->context() == scriptState->isolate()->GetCurrentContext()); |
83 DCHECK(scriptState->perContextData()); | 85 DCHECK(scriptState->perContextData()); |
84 DCHECK(scriptState->world().isMainWorld()); | 86 DCHECK(scriptState->world().isMainWorld()); |
85 (*s_installConditionalFeaturesFunction)(&V8Window::wrapperTypeInfo, | 87 (*s_installConditionalFeaturesFunction)(&V8Window::wrapperTypeInfo, |
86 scriptState, v8::Local<v8::Object>(), | 88 scriptState, v8::Local<v8::Object>(), |
87 v8::Local<v8::Function>()); | 89 v8::Local<v8::Function>()); |
88 } | 90 } |
89 | 91 |
90 bool isFeatureEnabledInFrame(const FeaturePolicy::Feature& feature, | 92 bool isFeatureEnabledInFrame(WebFeaturePolicyFeature feature, |
91 const LocalFrame* frame) { | 93 const LocalFrame* frame) { |
92 // If there is no frame, or if feature policy is disabled, use defaults. | 94 // TODO: Remove this check when FP ships. This sets the static policy for |
93 bool enabledByDefault = | 95 // fullscreen and vibrate to be allowed at the top-level, but not in cross- |
94 (feature.defaultPolicy == FeaturePolicy::FeatureDefault::EnableForAll || | 96 // origin content. With FP enabled, this logic is centralized in the |
95 (feature.defaultPolicy == FeaturePolicy::FeatureDefault::EnableForSelf && | 97 // FeaturePolicy class. |
96 !frame->isCrossOriginSubframe())); | 98 if (!RuntimeEnabledFeatures::featurePolicyEnabled() || !frame) { |
97 if (!RuntimeEnabledFeatures::featurePolicyEnabled() || !frame) | 99 return (!frame->isCrossOriginSubframe() || |
98 return enabledByDefault; | 100 (feature == WebFeaturePolicyFeature::Fullscreen || |
99 FeaturePolicy* featurePolicy = frame->securityContext()->getFeaturePolicy(); | 101 feature == WebFeaturePolicyFeature::Geolocation || |
| 102 feature == WebFeaturePolicyFeature::Payment || |
| 103 feature == WebFeaturePolicyFeature::Vibrate)); |
| 104 } |
| 105 WebFeaturePolicy* featurePolicy = |
| 106 frame->securityContext()->getFeaturePolicy(); |
100 // The policy should always be initialized before checking it to ensure we | 107 // The policy should always be initialized before checking it to ensure we |
101 // properly inherit the parent policy. | 108 // properly inherit the parent policy. |
102 DCHECK(featurePolicy); | 109 DCHECK(featurePolicy); |
103 | 110 |
104 // Otherwise, check policy. | 111 // Otherwise, check policy. |
105 return featurePolicy->isFeatureEnabled(feature); | 112 return Platform::current()->isFeatureEnabledByPolicy( |
| 113 featurePolicy, feature, |
| 114 WebSecurityOrigin(frame->securityContext()->getSecurityOrigin())); |
106 } | 115 } |
107 | 116 |
108 } // namespace blink | 117 } // namespace blink |
OLD | NEW |