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

Unified Diff: Source/build/scripts/make_event_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_element_factory.py ('k') | Source/build/scripts/make_internal_runtime_flags.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/build/scripts/make_event_factory.py
diff --git a/Source/build/scripts/make_event_factory.py b/Source/build/scripts/make_event_factory.py
index 95abe360c58dd405c30c1e5e1d63b3e702b6f164..abf1ac0ae5c57b640f8b801808efdac7a1fdeba8 100644
--- a/Source/build/scripts/make_event_factory.py
+++ b/Source/build/scripts/make_event_factory.py
@@ -52,8 +52,8 @@ class EventFactoryWriter(name_macros.Writer):
'lower_first': name_utilities.lower_first,
}
- def __init__(self, in_file_path, enabled_conditions):
- super(EventFactoryWriter, self).__init__(in_file_path, enabled_conditions)
+ def __init__(self, in_file_path):
+ super(EventFactoryWriter, self).__init__(in_file_path)
self._outputs[(self.namespace + ".cpp")] = self.generate_implementation
@template_expander.use_jinja('EventFactory.cpp.tmpl', filters=filters)
« no previous file with comments | « Source/build/scripts/make_element_factory.py ('k') | Source/build/scripts/make_internal_runtime_flags.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698