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

Side by Side Diff: Source/core/scripts/templates/StyleBuilderFunctions.h.tmpl

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
(Empty)
1 {% from "macros.tmpl" import wrap_with_condition, license -%}
2 {{ license() }}
3
4 namespace WebCore {
5
6 class CSSValue;
7 class StyleResolverState;
8
9 class StyleBuilderFunctions {
10 public:
11
12 {%- for property_id, property in properties.items() if not property.use_handlers _for %}
13 {% call wrap_with_condition(property.condition) %}
14 static void applyInitial{{property_id}}(StyleResolverState&);
15 static void applyInherit{{property_id}}(StyleResolverState&);
16 static void applyValue{{property_id}}(StyleResolverState&, CSSValue*);
17 {%- endcall %}
18 {%- endfor %}
19
20 };
21
22 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/scripts/templates/StyleBuilderFunctions.cpp.tmpl ('k') | Source/core/scripts/templates/StylePropertyShorthand.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698