| 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 5a269c18795a2df9da7e97fb4f8b07f61a1b1925..1c8459a3c8e1b28ea23abab5d2095059c947c6df 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 %}
|
|
|