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

Side by Side Diff: third_party/WebKit/Source/build/scripts/templates/OriginTrials.h.tmpl

Issue 2822953002: Remove old wtf/ directory. (Closed)
Patch Set: Fixup *.typemap files. Created 3 years, 8 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 unified diff | Download patch
OLDNEW
1 {% from 'macros.tmpl' import license %} 1 {% from 'macros.tmpl' import license %}
2 {{license()}} 2 {{license()}}
3 3
4 #ifndef OriginTrials_h 4 #ifndef OriginTrials_h
5 #define OriginTrials_h 5 #define OriginTrials_h
6 6
7 #include "core/CoreExport.h" 7 #include "core/CoreExport.h"
8 #include "wtf/text/WTFString.h" 8 #include "platform/wtf/text/WTFString.h"
9 9
10 namespace blink { 10 namespace blink {
11 11
12 class ExecutionContext; 12 class ExecutionContext;
13 13
14 // A namespace with dynamic tests for experimental features which can be enabled through the 14 // A namespace with dynamic tests for experimental features which can be enabled through the
15 // experimental framework via origin trial tokens. 15 // experimental framework via origin trial tokens.
16 namespace OriginTrials { 16 namespace OriginTrials {
17 17
18 {% for feature in features %} 18 {% for feature in features %}
19 {% if feature.origin_trial_feature_name %} 19 {% if feature.origin_trial_feature_name %}
20 CORE_EXPORT bool {{feature.first_lowered_name}}Enabled(ExecutionContext*); 20 CORE_EXPORT bool {{feature.first_lowered_name}}Enabled(ExecutionContext*);
21 {% endif %} 21 {% endif %}
22 {% endfor %} 22 {% endfor %}
23 23
24 } // namespace OriginTrials 24 } // namespace OriginTrials
25 25
26 } // namespace blink 26 } // namespace blink
27 27
28 #endif // OriginTrials_h 28 #endif // OriginTrials_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698