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

Unified Diff: Source/core/scripts/make_style_shorthands.py

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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/scripts/make_style_builder.py ('k') | Source/core/scripts/templates/InternalRuntimeFlags.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/scripts/make_style_shorthands.py
diff --git a/Source/core/scripts/make_style_shorthands.py b/Source/core/scripts/make_style_shorthands.py
index db5d1880e61962098d58283f14eae65e094cc2f2..b25ba7bd322e90590092a230bfcb032e9f8ea08b 100644
--- a/Source/core/scripts/make_style_shorthands.py
+++ b/Source/core/scripts/make_style_shorthands.py
@@ -70,14 +70,14 @@ class StylePropertyShorthandWriter(in_generator.Writer):
def _create_css_property_name_enum_value(self, property_name):
return "CSSProperty" + property_name
- @template_expander.use_jinja("StylePropertyShorthand.cpp.tmpl")
+ @template_expander.use_jinja("StylePropertyShorthand.cpp")
def generate_style_property_shorthand_cpp(self):
return {
"properties": self._properties,
"longhands_dictionary": self._longhand_dictionary,
}
- @template_expander.use_jinja("StylePropertyShorthand.h.tmpl")
+ @template_expander.use_jinja("StylePropertyShorthand.h")
def generate_style_property_shorthand_h(self):
return {
"properties": self._properties,
« no previous file with comments | « Source/core/scripts/make_style_builder.py ('k') | Source/core/scripts/templates/InternalRuntimeFlags.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698