| Index: Source/core/svg/SVGTextContentElement.cpp
 | 
| diff --git a/Source/core/svg/SVGTextContentElement.cpp b/Source/core/svg/SVGTextContentElement.cpp
 | 
| index fcc07630c42ead2819ca15421e6e806eb6ef6371..51f8af6bb07e8adf8bdea663146e53bf45a9af7d 100644
 | 
| --- a/Source/core/svg/SVGTextContentElement.cpp
 | 
| +++ b/Source/core/svg/SVGTextContentElement.cpp
 | 
| @@ -48,14 +48,14 @@ template<> const SVGEnumerationStringEntries& getStaticStringEntries<SVGLengthAd
 | 
|  
 | 
|  // SVGTextContentElement's 'textLength' attribute needs special handling.
 | 
|  // It should return getComputedTextLength() when textLength is not specified manually.
 | 
| -class SVGAnimatedTextLength FINAL : public SVGAnimatedLength {
 | 
| +class SVGAnimatedTextLength final : public SVGAnimatedLength {
 | 
|  public:
 | 
|      static PassRefPtr<SVGAnimatedTextLength> create(SVGTextContentElement* contextElement)
 | 
|      {
 | 
|          return adoptRef(new SVGAnimatedTextLength(contextElement));
 | 
|      }
 | 
|  
 | 
| -    virtual SVGLengthTearOff* baseVal() OVERRIDE
 | 
| +    virtual SVGLengthTearOff* baseVal() override
 | 
|      {
 | 
|          SVGTextContentElement* textContentElement = toSVGTextContentElement(contextElement());
 | 
|          if (!textContentElement->textLengthIsSpecifiedByUser())
 | 
| 
 |