| Index: third_party/WebKit/Source/core/svg/SVGAngle.cpp
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGAngle.cpp b/third_party/WebKit/Source/core/svg/SVGAngle.cpp
|
| index b00fd8b2e0644184a379987276a4bed1e14198b4..9ed9554334b88b8cadfa6410443c5229ca0be108 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGAngle.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/SVGAngle.cpp
|
| @@ -389,7 +389,7 @@ void SVGAngle::assign(const SVGAngle& other)
|
| void SVGAngle::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtrWillBeRawPtr<SVGPropertyBase> from, PassRefPtrWillBeRawPtr<SVGPropertyBase> to, PassRefPtrWillBeRawPtr<SVGPropertyBase> toAtEndOfDuration, SVGElement*)
|
| {
|
| ASSERT(animationElement);
|
| - bool isToAnimation = animationElement->animationMode() == ToAnimation;
|
| + bool isToAnimation = animationElement->getAnimationMode() == ToAnimation;
|
|
|
| RefPtrWillBeRawPtr<SVGAngle> fromAngle = isToAnimation ? PassRefPtrWillBeRawPtr<SVGAngle>(this) : toSVGAngle(from);
|
| RefPtrWillBeRawPtr<SVGAngle> toAngle = toSVGAngle(to);
|
|
|