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

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

Issue 410953002: Merge CSSProperties.in and CSSShorthands.in (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@infiles
Patch Set: Created 6 years, 4 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
« no previous file with comments | « Source/build/scripts/scripts.gypi ('k') | Source/build/scripts/templates/StyleBuilderFunctions.cpp.tmpl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/build/scripts/templates/StyleBuilder.cpp.tmpl
diff --git a/Source/build/scripts/templates/StyleBuilder.cpp.tmpl b/Source/build/scripts/templates/StyleBuilder.cpp.tmpl
index 861dda7317725bab7184f536f08667c953c1d39b..537baf0b6fbde46856c5466803673ba1d85315a2 100644
--- a/Source/build/scripts/templates/StyleBuilder.cpp.tmpl
+++ b/Source/build/scripts/templates/StyleBuilder.cpp.tmpl
@@ -16,7 +16,7 @@ namespace blink {
void StyleBuilder::applyProperty(CSSPropertyID property, StyleResolverState& state, CSSValue* value, bool isInitial, bool isInherit) {
switch(property) {
{% for property_id, property in properties.items()
- if not property.direction_aware and not property.skip %}
+ if property.should_declare_functions or property.use_handlers_for %}
{% set used_property = properties[property.use_handlers_for] or property %}
{% set used_property_id = used_property.property_id %}
case {{property_id}}:
@@ -38,12 +38,11 @@ void StyleBuilder::applyProperty(CSSPropertyID property, StyleResolverState& sta
applyProperty(resolvedProperty, state, value);
return;
}
- {% for property_id, property in properties.items() if property.skip %}
+ {% for property_id, property in properties.items() if property.builder_skip %}
case {{property_id}}:
{% endfor %}
return;
default:
- // FIXME: We should explicitly handle all cases here once we merge the various .in files
ASSERT_NOT_REACHED();
}
}
« no previous file with comments | « Source/build/scripts/scripts.gypi ('k') | Source/build/scripts/templates/StyleBuilderFunctions.cpp.tmpl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698