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 #ifndef ConditionalFeatures_h | 5 #ifndef ConditionalFeatures_h |
6 #define ConditionalFeatures_h | 6 #define ConditionalFeatures_h |
7 | 7 |
8 #include "bindings/core/v8/DOMWrapperWorld.h" | 8 #include "bindings/core/v8/DOMWrapperWorld.h" |
9 #include "core/CoreExport.h" | 9 #include "core/CoreExport.h" |
10 #include "platform/feature_policy/FeaturePolicy.h" | 10 #include "public/platform/WebFeaturePolicy.h" |
11 #include <v8.h> | 11 #include <v8.h> |
12 | 12 |
13 namespace blink { | 13 namespace blink { |
14 | 14 |
15 class ScriptState; | 15 class ScriptState; |
16 class LocalFrame; | 16 class LocalFrame; |
17 | 17 |
18 using InstallConditionalFeaturesFunction = void (*)(const WrapperTypeInfo*, | 18 using InstallConditionalFeaturesFunction = void (*)(const WrapperTypeInfo*, |
19 const ScriptState*, | 19 const ScriptState*, |
20 v8::Local<v8::Object>, | 20 v8::Local<v8::Object>, |
(...skipping 14 matching lines...) Expand all Loading... |
35 // function is returned, so that functions can be chained. | 35 // function is returned, so that functions can be chained. |
36 CORE_EXPORT InstallConditionalFeaturesFunction | 36 CORE_EXPORT InstallConditionalFeaturesFunction |
37 setInstallConditionalFeaturesFunction(InstallConditionalFeaturesFunction); | 37 setInstallConditionalFeaturesFunction(InstallConditionalFeaturesFunction); |
38 | 38 |
39 // Installs all of the conditionally enabled V8 bindings on the Window object. | 39 // Installs all of the conditionally enabled V8 bindings on the Window object. |
40 // This is called separately from other objects so that attributes and | 40 // This is called separately from other objects so that attributes and |
41 // interfaces which need to be visible on the global object are installed even | 41 // interfaces which need to be visible on the global object are installed even |
42 // when the V8 context is reused (i.e., after navigation) | 42 // when the V8 context is reused (i.e., after navigation) |
43 CORE_EXPORT void installPendingConditionalFeaturesOnWindow(const ScriptState*); | 43 CORE_EXPORT void installPendingConditionalFeaturesOnWindow(const ScriptState*); |
44 | 44 |
45 CORE_EXPORT bool isFeatureEnabledInFrame(const FeaturePolicy::Feature&, | 45 CORE_EXPORT bool isFeatureEnabledInFrame(WebFeaturePolicyFeature, |
46 const LocalFrame*); | 46 const LocalFrame*); |
47 | 47 |
48 } // namespace blink | 48 } // namespace blink |
49 | 49 |
50 #endif // ConditionalFeatures_h | 50 #endif // ConditionalFeatures_h |
OLD | NEW |