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

Unified Diff: Source/build/scripts/make_qualified_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_names.py ('k') | Source/build/scripts/make_runtime_features.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/build/scripts/make_qualified_names.py
diff --git a/Source/build/scripts/make_qualified_names.py b/Source/build/scripts/make_qualified_names.py
index cb607b12265e90a9f154f18cd49c3901a1e6b41a..9b35bddb1ec8ee4c421ff0d672939e294293d3ac 100755
--- a/Source/build/scripts/make_qualified_names.py
+++ b/Source/build/scripts/make_qualified_names.py
@@ -59,8 +59,8 @@ class MakeQualifiedNamesWriter(in_generator.Writer):
'symbol': _symbol,
}
- def __init__(self, in_file_paths, enabled_conditions):
- super(MakeQualifiedNamesWriter, self).__init__(None, enabled_conditions)
+ def __init__(self, in_file_paths):
+ super(MakeQualifiedNamesWriter, self).__init__(None)
assert len(in_file_paths) <= 2, 'MakeQualifiedNamesWriter requires at most 2 in files, got %d.' % len(in_file_paths)
if len(in_file_paths) == 2:
« no previous file with comments | « Source/build/scripts/make_names.py ('k') | Source/build/scripts/make_runtime_features.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698