| Index: third_party/WebKit/Source/core/animation/SVGInterpolation.h
|
| diff --git a/third_party/WebKit/Source/core/animation/SVGInterpolation.h b/third_party/WebKit/Source/core/animation/SVGInterpolation.h
|
| index e9e0af962c766c4dbf2b80f77ac2d75afafa0920..986395b14b2163afa5652b94b66deca98ca8574f 100644
|
| --- a/third_party/WebKit/Source/core/animation/SVGInterpolation.h
|
| +++ b/third_party/WebKit/Source/core/animation/SVGInterpolation.h
|
| @@ -24,7 +24,10 @@ public:
|
| return PropertyHandle(attributeName());
|
| }
|
|
|
| - void apply(SVGElement&) const;
|
| + void apply(SVGElement& targetElement) const
|
| + {
|
| + targetElement.setWebAnimatedAttribute(attributeName(), interpolatedValue(targetElement));
|
| + }
|
|
|
| virtual PassRefPtrWillBeRawPtr<SVGPropertyBase> interpolatedValue(SVGElement&) const = 0;
|
|
|
|
|