| Index: third_party/WebKit/Source/bindings/core/v8/ConditionalFeatures.h
|
| diff --git a/third_party/WebKit/Source/bindings/core/v8/ConditionalFeatures.h b/third_party/WebKit/Source/bindings/core/v8/ConditionalFeatures.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..eaf12ccb9ddfedee62ed6016f9595b7eaecd91be
|
| --- /dev/null
|
| +++ b/third_party/WebKit/Source/bindings/core/v8/ConditionalFeatures.h
|
| @@ -0,0 +1,24 @@
|
| +// Copyright 2016 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#ifndef ConditionalFeatures_h
|
| +#define ConditionalFeatures_h
|
| +
|
| +namespace WTF {
|
| +
|
| +class String;
|
| +}
|
| +
|
| +namespace blink {
|
| +
|
| +class ExecutionContext;
|
| +struct FeaturePolicyFeature;
|
| +class Frame;
|
| +
|
| +void initializeConditionalFeatures(ExecutionContext*);
|
| +bool isFeatureEnabledInFrame(const FeaturePolicyFeature*, const Frame*);
|
| +
|
| +} // namespace
|
| +
|
| +#endif // ConditionalFeatures_h
|
|
|