| Index: Source/core/svg/properties/SVGAnimatedTransformListPropertyTearOff.h
 | 
| diff --git a/Source/core/svg/properties/SVGAnimatedTransformListPropertyTearOff.h b/Source/core/svg/properties/SVGAnimatedTransformListPropertyTearOff.h
 | 
| index 0bc26c475d25d58ea7dc6b56ba4b8defb8e4ef00..daa7e6e4993f6c8d610fbb6a7694a7e8025dcd57 100644
 | 
| --- a/Source/core/svg/properties/SVGAnimatedTransformListPropertyTearOff.h
 | 
| +++ b/Source/core/svg/properties/SVGAnimatedTransformListPropertyTearOff.h
 | 
| @@ -28,14 +28,14 @@ namespace WebCore {
 | 
|  
 | 
|  class SVGAnimatedTransformListPropertyTearOff : public SVGAnimatedListPropertyTearOff<SVGTransformList> {
 | 
|  public:
 | 
| -    virtual SVGListPropertyTearOff<SVGTransformList>* baseVal()
 | 
| +    virtual SVGListPropertyTearOff<SVGTransformList>* baseVal() OVERRIDE
 | 
|      {
 | 
|          if (!m_baseVal)
 | 
|              m_baseVal = SVGTransformListPropertyTearOff::create(this, BaseValRole, m_values, m_wrappers);
 | 
|          return static_cast<SVGListPropertyTearOff<SVGTransformList>*>(m_baseVal.get());
 | 
|      }
 | 
|  
 | 
| -    virtual SVGListPropertyTearOff<SVGTransformList>* animVal()
 | 
| +    virtual SVGListPropertyTearOff<SVGTransformList>* animVal() OVERRIDE
 | 
|      {
 | 
|          if (!m_animVal)
 | 
|              m_animVal = SVGTransformListPropertyTearOff::create(this, AnimValRole, m_values, m_wrappers);
 | 
| 
 |