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

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

Issue 2329463004: ABANDONED CL: Changes needed to make things compile after running rewrite_to_chrome_style tool. (Closed)
Patch Set: More fixes - things build fine at this point. Created 3 years, 8 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/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 %}

Powered by Google App Engine
This is Rietveld 408576698