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

Unified Diff: third_party/WebKit/Source/core/css/resolver/AnimatedStyleBuilder.cpp

Issue 1780603002: blink: Rename bindings/ methods to prefix with get when they collide. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: clash-bindings: rebase Created 4 years, 9 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/core/css/resolver/AnimatedStyleBuilder.cpp
diff --git a/third_party/WebKit/Source/core/css/resolver/AnimatedStyleBuilder.cpp b/third_party/WebKit/Source/core/css/resolver/AnimatedStyleBuilder.cpp
index 934ee14938ccd47f4bd9c2822655839971581a23..9a7c4ca0dada126257757debe1bfbab824955aff 100644
--- a/third_party/WebKit/Source/core/css/resolver/AnimatedStyleBuilder.cpp
+++ b/third_party/WebKit/Source/core/css/resolver/AnimatedStyleBuilder.cpp
@@ -369,7 +369,7 @@ void AnimatedStyleBuilder::applyProperty(CSSPropertyID property, StyleResolverSt
style->setBottom(animatableValueToLength(value, state));
return;
case CSSPropertyBoxShadow:
- style->setBoxShadow(toAnimatableShadow(value)->shadowList());
+ style->setBoxShadow(toAnimatableShadow(value)->getShadowList());
return;
case CSSPropertyClip:
style->setClip(animatableValueToLengthBox(value, state));
@@ -531,7 +531,7 @@ void AnimatedStyleBuilder::applyProperty(CSSPropertyID property, StyleResolverSt
style->setTextIndent(animatableValueToLength(value, state));
return;
case CSSPropertyTextShadow:
- style->setTextShadow(toAnimatableShadow(value)->shadowList());
+ style->setTextShadow(toAnimatableShadow(value)->getShadowList());
return;
case CSSPropertyTop:
style->setTop(animatableValueToLength(value, state));
@@ -543,7 +543,7 @@ void AnimatedStyleBuilder::applyProperty(CSSPropertyID property, StyleResolverSt
style->setVerticalBorderSpacing(animatableValueClampTo<unsigned short>(value));
return;
case CSSPropertyWebkitClipPath:
- style->setClipPath(toAnimatableClipPathOperation(value)->clipPathOperation());
+ style->setClipPath(toAnimatableClipPathOperation(value)->getClipPathOperation());
return;
case CSSPropertyColumnCount:
style->setColumnCount(clampTo<unsigned short>(round(toAnimatableDouble(value)->toDouble()), 1));
@@ -599,7 +599,7 @@ void AnimatedStyleBuilder::applyProperty(CSSPropertyID property, StyleResolverSt
style->setPerspectiveOrigin(animatableValueToLengthPoint(value, state));
return;
case CSSPropertyShapeOutside:
- style->setShapeOutside(toAnimatableShapeValue(value)->shapeValue());
+ style->setShapeOutside(toAnimatableShapeValue(value)->getShapeValue());
return;
case CSSPropertyShapeMargin:
style->setShapeMargin(animatableValueToLength(value, state, ValueRangeNonNegative));
« no previous file with comments | « third_party/WebKit/Source/core/clipboard/DataTransferItem.h ('k') | third_party/WebKit/Source/core/events/DragEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698