| Index: Source/core/rendering/svg/SVGInlineTextBox.h
 | 
| diff --git a/Source/core/rendering/svg/SVGInlineTextBox.h b/Source/core/rendering/svg/SVGInlineTextBox.h
 | 
| index ef399c724a2f25b145c17574fc15de1e433b140e..2db18d16e48d9290b7b72771c620b1270f3f3b23 100644
 | 
| --- a/Source/core/rendering/svg/SVGInlineTextBox.h
 | 
| +++ b/Source/core/rendering/svg/SVGInlineTextBox.h
 | 
| @@ -31,7 +31,7 @@ namespace WebCore {
 | 
|  class RenderSVGResource;
 | 
|  class SVGRootInlineBox;
 | 
|  
 | 
| -class SVGInlineTextBox : public InlineTextBox {
 | 
| +class SVGInlineTextBox FINAL : public InlineTextBox {
 | 
|  public:
 | 
|      SVGInlineTextBox(RenderObject*);
 | 
|  
 | 
| @@ -57,7 +57,7 @@ public:
 | 
|      Vector<SVGTextFragment>& textFragments() { return m_textFragments; }
 | 
|      const Vector<SVGTextFragment>& textFragments() const { return m_textFragments; }
 | 
|  
 | 
| -    void dirtyLineBoxes() OVERRIDE;
 | 
| +    virtual void dirtyLineBoxes() OVERRIDE;
 | 
|  
 | 
|      bool startsNewTextChunk() const { return m_startsNewTextChunk; }
 | 
|      void setStartsNewTextChunk(bool newTextChunk) { m_startsNewTextChunk = newTextChunk; }
 | 
| 
 |