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

Unified Diff: third_party/WebKit/Source/build/scripts/make_css_property_metadata.py

Issue 2329463004: ABANDONED CL: Changes needed to make things compile after running rewrite_to_chrome_style tool. (Closed)
Patch Set: More fixes - things build fine at this point. Created 3 years, 8 months 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
Index: third_party/WebKit/Source/build/scripts/make_css_property_metadata.py
diff --git a/third_party/WebKit/Source/build/scripts/make_css_property_metadata.py b/third_party/WebKit/Source/build/scripts/make_css_property_metadata.py
index 80df8355a5d874fd8a0eda5463874f53a2c6adb5..1fa4eba59cf01d6d187b049973cb69b7dc41c44c 100755
--- a/third_party/WebKit/Source/build/scripts/make_css_property_metadata.py
+++ b/third_party/WebKit/Source/build/scripts/make_css_property_metadata.py
@@ -24,11 +24,11 @@ class CSSPropertyMetadataWriter(css_properties.CSSProperties):
def generate_css_property_metadata_cpp(self):
return {
'properties_including_aliases': self._properties_including_aliases,
- 'switches': [('is_descriptor', 'isDescriptor'),
- ('is_property', 'isProperty'),
- ('interpolable', 'isInterpolableProperty'),
- ('inherited', 'isInheritedProperty'),
- ('supports_percentage', 'propertySupportsPercentage'),
+ 'switches': [('is_descriptor', 'IsDescriptor'),
+ ('is_property', 'IsProperty'),
+ ('interpolable', 'IsInterpolableProperty'),
+ ('inherited', 'IsInheritedProperty'),
+ ('supports_percentage', 'PropertySupportsPercentage'),
],
'first_enum_value': self._first_enum_value,
}

Powered by Google App Engine
This is Rietveld 408576698