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

Unified Diff: Source/build/scripts/make_runtime_features.py

Issue 57813007: CSS property names and value keywords no longer requires conditions (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Julien's review on removing enabled_conditions param Created 7 years, 1 month 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/build/scripts/make_qualified_names.py ('k') | Source/build/scripts/make_settings.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/build/scripts/make_runtime_features.py
diff --git a/Source/build/scripts/make_runtime_features.py b/Source/build/scripts/make_runtime_features.py
index ad84a25a7dcd9a8960fccb35a8495caf3b770cae..c9656c8d129540bbfd3b0c29f28172f8ec7404bb 100755
--- a/Source/build/scripts/make_runtime_features.py
+++ b/Source/build/scripts/make_runtime_features.py
@@ -50,8 +50,8 @@ class RuntimeFeatureWriter(in_generator.Writer):
'status': None,
}
- def __init__(self, in_file_path, enabled_conditions):
- super(RuntimeFeatureWriter, self).__init__(in_file_path, enabled_conditions)
+ def __init__(self, in_file_path):
+ super(RuntimeFeatureWriter, self).__init__(in_file_path)
self._outputs = {(self.class_name + ".h"): self.generate_header,
(self.class_name + ".cpp"): self.generate_implementation,
}
« no previous file with comments | « Source/build/scripts/make_qualified_names.py ('k') | Source/build/scripts/make_settings.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698