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

Unified Diff: Source/build/scripts/make_element_factory.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_css_value_keywords.py ('k') | Source/build/scripts/make_event_factory.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/build/scripts/make_element_factory.py
diff --git a/Source/build/scripts/make_element_factory.py b/Source/build/scripts/make_element_factory.py
index 75cd7746b3f30f83b02ef86d713782dbe63af92e..39b8801e0483970a706b3eebc8ff657b0beeeac6 100755
--- a/Source/build/scripts/make_element_factory.py
+++ b/Source/build/scripts/make_element_factory.py
@@ -52,8 +52,8 @@ class MakeElementFactoryWriter(MakeQualifiedNamesWriter):
})
filters = MakeQualifiedNamesWriter.filters
- def __init__(self, in_file_paths, enabled_conditions):
- super(MakeElementFactoryWriter, self).__init__(in_file_paths, enabled_conditions)
+ def __init__(self, in_file_paths):
+ super(MakeElementFactoryWriter, self).__init__(in_file_paths)
# FIXME: When we start using these element factories, we'll want to
# remove the "new" prefix and also have our base class generate
« no previous file with comments | « Source/build/scripts/make_css_value_keywords.py ('k') | Source/build/scripts/make_event_factory.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698