| Index: Source/core/svg/SVGAnimatedRect.h
|
| diff --git a/Source/core/svg/SVGAnimatedRect.h b/Source/core/svg/SVGAnimatedRect.h
|
| index ccbaef87eda6920171303992d09e93b1fdd4051e..d9b11c18c80c0bed97023cb6fde5b44a1cfb696d 100644
|
| --- a/Source/core/svg/SVGAnimatedRect.h
|
| +++ b/Source/core/svg/SVGAnimatedRect.h
|
| @@ -38,21 +38,21 @@ DEFINE_ANIMATED_PROPERTY(AnimatedRect, OwnerType, DOMAttribute, DOMAttribute.loc
|
|
|
| class SVGAnimationElement;
|
|
|
| -class SVGAnimatedRectAnimator : public SVGAnimatedTypeAnimator {
|
| +class SVGAnimatedRectAnimator FINAL : public SVGAnimatedTypeAnimator {
|
| public:
|
| SVGAnimatedRectAnimator(SVGAnimationElement*, SVGElement*);
|
| virtual ~SVGAnimatedRectAnimator() { }
|
|
|
| - virtual PassOwnPtr<SVGAnimatedType> constructFromString(const String&);
|
| - virtual PassOwnPtr<SVGAnimatedType> startAnimValAnimation(const SVGElementAnimatedPropertyList&);
|
| - virtual void stopAnimValAnimation(const SVGElementAnimatedPropertyList&);
|
| - virtual void resetAnimValToBaseVal(const SVGElementAnimatedPropertyList&, SVGAnimatedType*);
|
| - virtual void animValWillChange(const SVGElementAnimatedPropertyList&);
|
| - virtual void animValDidChange(const SVGElementAnimatedPropertyList&);
|
| + virtual PassOwnPtr<SVGAnimatedType> constructFromString(const String&) OVERRIDE;
|
| + virtual PassOwnPtr<SVGAnimatedType> startAnimValAnimation(const SVGElementAnimatedPropertyList&) OVERRIDE;
|
| + virtual void stopAnimValAnimation(const SVGElementAnimatedPropertyList&) OVERRIDE;
|
| + virtual void resetAnimValToBaseVal(const SVGElementAnimatedPropertyList&, SVGAnimatedType*) OVERRIDE;
|
| + virtual void animValWillChange(const SVGElementAnimatedPropertyList&) OVERRIDE;
|
| + virtual void animValDidChange(const SVGElementAnimatedPropertyList&) OVERRIDE;
|
|
|
| - virtual void addAnimatedTypes(SVGAnimatedType*, SVGAnimatedType*);
|
| - virtual void calculateAnimatedValue(float percentage, unsigned repeatCount, SVGAnimatedType*, SVGAnimatedType*, SVGAnimatedType*, SVGAnimatedType*);
|
| - virtual float calculateDistance(const String& fromString, const String& toString);
|
| + virtual void addAnimatedTypes(SVGAnimatedType*, SVGAnimatedType*) OVERRIDE;
|
| + virtual void calculateAnimatedValue(float percentage, unsigned repeatCount, SVGAnimatedType*, SVGAnimatedType*, SVGAnimatedType*, SVGAnimatedType*) OVERRIDE;
|
| + virtual float calculateDistance(const String& fromString, const String& toString) OVERRIDE;
|
| };
|
|
|
| } // namespace WebCore
|
|
|