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

Unified Diff: Source/build/scripts/make_style_shorthands.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_builder.py ('k') | Source/build/scripts/name_macros.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/build/scripts/make_style_shorthands.py
diff --git a/Source/build/scripts/make_style_shorthands.py b/Source/build/scripts/make_style_shorthands.py
index c73de2fc7adb30edcf2963118c210e95129bc40d..c8f4e9a6856688436bf0a3abe44ecfe4523cf2dc 100644
--- a/Source/build/scripts/make_style_shorthands.py
+++ b/Source/build/scripts/make_style_shorthands.py
@@ -43,8 +43,8 @@ class StylePropertyShorthandWriter(in_generator.Writer):
'runtimeEnabledShorthand': None,
}
- def __init__(self, in_files, enabled_conditions):
- super(StylePropertyShorthandWriter, self).__init__(in_files, enabled_conditions)
+ def __init__(self, in_files):
+ super(StylePropertyShorthandWriter, self).__init__(in_files)
self._outputs = {("StylePropertyShorthand.cpp"): self.generate_style_property_shorthand_cpp, ("StylePropertyShorthand.h"): self.generate_style_property_shorthand_h}
self._properties = self.in_file.name_dictionaries
« no previous file with comments | « Source/build/scripts/make_style_builder.py ('k') | Source/build/scripts/name_macros.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698