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

Unified Diff: Source/build/scripts/templates/StylePropertyShorthand.cpp.tmpl

Issue 371443003: Merge .in files for css/svg properties into a single file (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@cascade
Patch Set: up-to-date version of entire patch Created 6 years, 5 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: Source/build/scripts/templates/StylePropertyShorthand.cpp.tmpl
diff --git a/Source/build/scripts/templates/StylePropertyShorthand.cpp.tmpl b/Source/build/scripts/templates/StylePropertyShorthand.cpp.tmpl
index 99c32d4f599b5b7e5342b9060eaa416f39e1382e..890829dea0ed66bd2761342b6d999305c6ad3a33 100644
--- a/Source/build/scripts/templates/StylePropertyShorthand.cpp.tmpl
+++ b/Source/build/scripts/templates/StylePropertyShorthand.cpp.tmpl
@@ -29,15 +29,15 @@
namespace WebCore {
{% for property_id, property in properties.items() %}
-const StylePropertyShorthand& {{property.camel_case_name}}Shorthand()
+const StylePropertyShorthand& {{property.lower_camel_name}}Shorthand()
{
- static const CSSPropertyID {{property.camel_case_name}}Properties[] = {
- {% for longhand_id in property.camel_case_longhands %}
+ static const CSSPropertyID {{property.lower_camel_name}}Properties[] = {
+ {% for longhand_id in property.longhand_property_ids %}
{{longhand_id}},
{% endfor %}
};
- DEFINE_STATIC_LOCAL(StylePropertyShorthand, {{property.camel_case_name}}Longhands, ({{property_id}}, {{property.camel_case_name}}Properties, WTF_ARRAY_LENGTH({{property.camel_case_name}}Properties)));
- return {{property.camel_case_name}}Longhands;
+ DEFINE_STATIC_LOCAL(StylePropertyShorthand, {{property.lower_camel_name}}Longhands, ({{property_id}}, {{property.lower_camel_name}}Properties, WTF_ARRAY_LENGTH({{property.lower_camel_name}}Properties)));
+ return {{property.lower_camel_name}}Longhands;
}
{% endfor %}
@@ -50,7 +50,7 @@ const StylePropertyShorthand& shorthandForProperty(CSSPropertyID propertyID)
switch (propertyID) {
{% for property_id, property in properties.items() if property.camel_case_name != "marker" %}
case {{property_id}}:
- return {{property.camel_case_name}}Shorthand();
+ return {{property.lower_camel_name}}Shorthand();
{% endfor %}
default: {
return emptyShorthand;
@@ -65,7 +65,7 @@ void getMatchingShorthandsForLonghand(CSSPropertyID propertyID, Vector<StyleProp
{% for longhand_id, shorthands in longhands_dictionary.items() %}
case {{longhand_id}}: {
{% for shorthand in shorthands %}
- result->uncheckedAppend({{shorthand.camel_case_name}}Shorthand());
+ result->uncheckedAppend({{shorthand.lower_camel_name}}Shorthand());
{% endfor %}
break;
}

Powered by Google App Engine
This is Rietveld 408576698