| Index: Source/core/rendering/svg/SVGRootInlineBox.h | 
| diff --git a/Source/core/rendering/svg/SVGRootInlineBox.h b/Source/core/rendering/svg/SVGRootInlineBox.h | 
| index 6baf829773d6cb154e66ed1103abca973d1d4f89..f9c5e6c16811d3ff8bf4e6546734bd7611300c74 100644 | 
| --- a/Source/core/rendering/svg/SVGRootInlineBox.h | 
| +++ b/Source/core/rendering/svg/SVGRootInlineBox.h | 
| @@ -29,7 +29,7 @@ | 
|  | 
| namespace blink { | 
|  | 
| -class SVGRootInlineBox FINAL : public RootInlineBox { | 
| +class SVGRootInlineBox final : public RootInlineBox { | 
| public: | 
| SVGRootInlineBox(RenderBlockFlow& block) | 
| : RootInlineBox(block) | 
| @@ -37,14 +37,14 @@ public: | 
| { | 
| } | 
|  | 
| -    virtual bool isSVGRootInlineBox() const OVERRIDE { return true; } | 
| +    virtual bool isSVGRootInlineBox() const override { return true; } | 
|  | 
| -    virtual float virtualLogicalHeight() const OVERRIDE { return m_logicalHeight; } | 
| +    virtual float virtualLogicalHeight() const override { return m_logicalHeight; } | 
| void setLogicalHeight(float height) { m_logicalHeight = height; } | 
|  | 
| -    virtual void paint(PaintInfo&, const LayoutPoint&, LayoutUnit lineTop, LayoutUnit lineBottom) OVERRIDE; | 
| +    virtual void paint(PaintInfo&, const LayoutPoint&, LayoutUnit lineTop, LayoutUnit lineBottom) override; | 
|  | 
| -    virtual void markDirty() OVERRIDE; | 
| +    virtual void markDirty() override; | 
|  | 
| void computePerCharacterLayoutInformation(); | 
|  | 
|  |