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

Unified Diff: Source/build/scripts/name_macros.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_style_shorthands.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/build/scripts/name_macros.py
diff --git a/Source/build/scripts/name_macros.py b/Source/build/scripts/name_macros.py
index 754f931aafe21619acebfd24321327a9abfe5447..a1655bd4f2c66775bbb6b643b22b891e2ae9780e 100644
--- a/Source/build/scripts/name_macros.py
+++ b/Source/build/scripts/name_macros.py
@@ -64,8 +64,8 @@ INTERFACES_HEADER_TEMPLATE = """%(license)s
class Writer(in_generator.Writer):
- def __init__(self, in_file_path, enabled_conditions):
- super(Writer, self).__init__(in_file_path, enabled_conditions)
+ def __init__(self, in_file_path):
+ super(Writer, self).__init__(in_file_path)
self.namespace = self.in_file.parameters['namespace'].strip('"')
self._entries_by_conditional = {}
self._unconditional_entries = []
« no previous file with comments | « Source/build/scripts/make_style_shorthands.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698