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

Unified Diff: Source/build/scripts/make_names.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_internal_runtime_flags.py ('k') | Source/build/scripts/make_qualified_names.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/build/scripts/make_names.py
diff --git a/Source/build/scripts/make_names.py b/Source/build/scripts/make_names.py
index 6c2df78dc129b876cb8b931977dcd5a341889bf6..79a67769a2c85bb439d736fed69d39135882227e 100755
--- a/Source/build/scripts/make_names.py
+++ b/Source/build/scripts/make_names.py
@@ -59,8 +59,8 @@ class MakeNamesWriter(in_generator.Writer):
'to_macro_style': name_utilities.to_macro_style,
}
- def __init__(self, in_file_path, enabled_conditions):
- super(MakeNamesWriter, self).__init__(in_file_path, enabled_conditions)
+ def __init__(self, in_file_path):
+ super(MakeNamesWriter, self).__init__(in_file_path)
namespace = self.in_file.parameters['namespace'].strip('"')
export = self.in_file.parameters['export'].strip('"')
« no previous file with comments | « Source/build/scripts/make_internal_runtime_flags.py ('k') | Source/build/scripts/make_qualified_names.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698