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

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: Rebasing the fixes... Created 3 years, 10 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 b7ebe71c78f03eb30e4f1373c49a406af27ae46a..a16b34580c5bfff4b0cc8cba7d66a37654025e16 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': self._properties,
- 'switches': [('descriptor_only', 'isDescriptorOnly'),
- ('interpolable', 'isInterpolableProperty'),
- ('inherited', 'isInheritedProperty'),
- ('supports_percentage', 'propertySupportsPercentage'),
- ('repeated', 'propertyIsRepeated')
+ 'switches': [('descriptor_only', 'IsDescriptorOnly'),
+ ('interpolable', 'IsInterpolableProperty'),
+ ('inherited', 'IsInheritedProperty'),
+ ('supports_percentage', 'PropertySupportsPercentage'),
+ ('repeated', 'PropertyIsRepeated')
],
'first_enum_value': self._first_enum_value,
}

Powered by Google App Engine
This is Rietveld 408576698