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

Unified Diff: Source/core/scripts/make_runtime_features.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_internal_runtime_flags.py ('k') | Source/core/scripts/make_style_builder.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/scripts/make_runtime_features.py
diff --git a/Source/core/scripts/make_runtime_features.py b/Source/core/scripts/make_runtime_features.py
index 1454f09f1b98a97bd424c63bb8b9490462c8b41e..635c7e67ff158b23263fa150f6e4a73b5783d9c5 100755
--- a/Source/core/scripts/make_runtime_features.py
+++ b/Source/core/scripts/make_runtime_features.py
@@ -80,14 +80,14 @@ class RuntimeFeatureWriter(in_generator.Writer):
# which is how we're referring to them in this generator.
return self.valid_values['status']
- @template_expander.use_jinja(class_name + ".h.tmpl")
+ @template_expander.use_jinja(class_name + ".h")
def generate_header(self):
return {
'features': self._features,
'feature_sets': self._feature_sets(),
}
- @template_expander.use_jinja(class_name + ".cpp.tmpl")
+ @template_expander.use_jinja(class_name + ".cpp")
def generate_implementation(self):
return {
'features': self._features,
« no previous file with comments | « Source/core/scripts/make_internal_runtime_flags.py ('k') | Source/core/scripts/make_style_builder.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698