Index: Source/core/svg/SVGAnimatedInteger.h |
diff --git a/Source/core/svg/SVGAnimatedInteger.h b/Source/core/svg/SVGAnimatedInteger.h |
index 6bca8579ec26d68377696a2955a1c0dba3e1ac80..b8610fc741b193f7b524c31b8c55a089bbd96705 100644 |
--- a/Source/core/svg/SVGAnimatedInteger.h |
+++ b/Source/core/svg/SVGAnimatedInteger.h |
@@ -40,23 +40,23 @@ DEFINE_ANIMATED_PROPERTY(AnimatedIntegerOptionalInteger, OwnerType, DOMAttribute |
class SVGAnimationElement; |
-class SVGAnimatedIntegerAnimator : public SVGAnimatedTypeAnimator { |
+class SVGAnimatedIntegerAnimator FINAL : public SVGAnimatedTypeAnimator { |
public: |
SVGAnimatedIntegerAnimator(SVGAnimationElement*, SVGElement*); |
virtual ~SVGAnimatedIntegerAnimator() { } |
static void calculateAnimatedInteger(SVGAnimationElement*, float percentage, unsigned repeatCount, int fromInteger, int toInteger, int toAtEndOfDurationInteger, int& animatedInteger); |
- 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 |