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

Unified Diff: third_party/WebKit/Source/build/scripts/templates/ExperimentalFeatures.h.tmpl

Issue 1635593004: Rename Experimental Framework classes and concepts (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 11 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/build/scripts/templates/ExperimentalFeatures.h.tmpl
diff --git a/third_party/WebKit/Source/build/scripts/templates/ExperimentalFeatures.h.tmpl b/third_party/WebKit/Source/build/scripts/templates/ExperimentalFeatures.h.tmpl
deleted file mode 100644
index c44d07b7d02995a36959428ae428c54182c20da3..0000000000000000000000000000000000000000
--- a/third_party/WebKit/Source/build/scripts/templates/ExperimentalFeatures.h.tmpl
+++ /dev/null
@@ -1,38 +0,0 @@
-{% from 'macros.tmpl' import license %}
-{{license()}}
-
-#ifndef ExperimentalFeatures_h
-#define ExperimentalFeatures_h
-
-#include "core/CoreExport.h"
-#include "wtf/text/WTFString.h"
-
-namespace blink {
-
-class ExecutionContext;
-
-// A class that stores dynamic tests for experimental features which can be
-// enabled through the experimental framework via API keys.
-
-class CORE_EXPORT ExperimentalFeatures {
-public:
- {% for feature in features %}
- {% if feature.api_name %}
- static bool {{feature.first_lowered_name}}Enabled(ExecutionContext* executionContext, String& errorMessage);
- static bool {{feature.first_lowered_name}}Enabled(ExecutionContext* executionContext);
- {% endif %}
- {% endfor %}
-
-private:
- ExperimentalFeatures() { }
-
- {% for feature in features %}
- {% if feature.api_name %}
- static bool {{feature.first_lowered_name}}EnabledImpl(ExecutionContext* executionContext, String* errorMessage);
- {% endif %}
- {% endfor %}
-};
-
-} // namespace blink
-
-#endif // ExperimentalFeatures_h

Powered by Google App Engine
This is Rietveld 408576698