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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/ConditionalFeatures.h

Issue 2254533002: [FeaturePolicy] Initial implementation of Feature Policy (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@fp-flag
Patch Set: Remove overaggressive bool transform Created 4 years, 3 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
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

Powered by Google App Engine
This is Rietveld 408576698