| Index: third_party/WebKit/Source/build/scripts/templates/StyleBuilder.cpp.tmpl
|
| diff --git a/third_party/WebKit/Source/build/scripts/templates/StyleBuilder.cpp.tmpl b/third_party/WebKit/Source/build/scripts/templates/StyleBuilder.cpp.tmpl
|
| index e439323a69dba7aad40d098e6c858746a2b2506d..f615e4d4e51c980fbb79e93d16f34c5ad1252a38 100644
|
| --- a/third_party/WebKit/Source/build/scripts/templates/StyleBuilder.cpp.tmpl
|
| +++ b/third_party/WebKit/Source/build/scripts/templates/StyleBuilder.cpp.tmpl
|
| @@ -12,7 +12,7 @@
|
|
|
| namespace blink {
|
|
|
| -void StyleBuilder::applyProperty(CSSPropertyID property,
|
| +void StyleBuilder::ApplyProperty(CSSPropertyID property,
|
| StyleResolverState& state,
|
| const CSSValue& value,
|
| bool isInitial,
|
| @@ -40,9 +40,9 @@ void StyleBuilder::applyProperty(CSSPropertyID property,
|
| case {{property_id}}:
|
| {% endfor %}
|
| {
|
| - CSSPropertyID resolvedProperty = CSSProperty::resolveDirectionAwareProperty(property, state.style()->direction(), state.style()->getWritingMode());
|
| + CSSPropertyID resolvedProperty = CSSProperty::ResolveDirectionAwareProperty(property, state.Style()->Direction(), state.Style()->GetWritingMode());
|
| ASSERT(resolvedProperty != property);
|
| - applyProperty(resolvedProperty, state, value);
|
| + ApplyProperty(resolvedProperty, state, value);
|
| return;
|
| }
|
| {% for property_id, property in properties.items() if property.builder_skip %}
|
|
|