| Index: Source/core/svg/SVGAnimatedBoolean.h
 | 
| diff --git a/Source/core/svg/SVGAnimatedBoolean.h b/Source/core/svg/SVGAnimatedBoolean.h
 | 
| index 442df071008ac57ff51acaf76bd86587d5f3230a..4b37ffe23e34b315c77e715cecc052323988b01b 100644
 | 
| --- a/Source/core/svg/SVGAnimatedBoolean.h
 | 
| +++ b/Source/core/svg/SVGAnimatedBoolean.h
 | 
| @@ -36,21 +36,21 @@ DEFINE_ANIMATED_PROPERTY(AnimatedBoolean, OwnerType, DOMAttribute, DOMAttribute.
 | 
|  
 | 
|  class SVGAnimationElement;
 | 
|  
 | 
| -class SVGAnimatedBooleanAnimator : public SVGAnimatedTypeAnimator {
 | 
| +class SVGAnimatedBooleanAnimator FINAL : public SVGAnimatedTypeAnimator {
 | 
|  public:
 | 
|      SVGAnimatedBooleanAnimator(SVGAnimationElement*, SVGElement*);
 | 
|      virtual ~SVGAnimatedBooleanAnimator() { }
 | 
|  
 | 
| -    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
 | 
| 
 |