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

Side by Side Diff: Source/core/scripts/templates/RuntimeEnabledFeatures.h

Issue 22546004: Remove .tmpl extension from Jinja templates in core Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 4 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 | Annotate | Revision Log
OLDNEW
1 {% from "macros.tmpl" import wrap_with_condition, license -%} 1 {% from "macros.tmpl" import wrap_with_condition, license -%}
2 {{ license() }} 2 {{ license() }}
3 3
4 #ifndef RuntimeEnabledFeatures_h 4 #ifndef RuntimeEnabledFeatures_h
5 #define RuntimeEnabledFeatures_h 5 #define RuntimeEnabledFeatures_h
6 6
7 namespace WebCore { 7 namespace WebCore {
8 8
9 // A class that stores static enablers for all experimental features. 9 // A class that stores static enablers for all experimental features.
10 10
(...skipping 28 matching lines...) Expand all
39 {%- call wrap_with_condition(feature.condition) %} 39 {%- call wrap_with_condition(feature.condition) %}
40 static bool is{{feature.name}}Enabled; 40 static bool is{{feature.name}}Enabled;
41 {%- endcall %} 41 {%- endcall %}
42 {%- endfor %} 42 {%- endfor %}
43 }; 43 };
44 44
45 } // namespace WebCore 45 } // namespace WebCore
46 46
47 #endif // RuntimeEnabledFeatures_h 47 #endif // RuntimeEnabledFeatures_h
48 48
OLDNEW
« no previous file with comments | « Source/core/scripts/templates/InternalRuntimeFlags.idl.tmpl ('k') | Source/core/scripts/templates/RuntimeEnabledFeatures.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698