| Index: Source/core/rendering/svg/SVGRootInlineBox.h
|
| diff --git a/Source/core/rendering/svg/SVGRootInlineBox.h b/Source/core/rendering/svg/SVGRootInlineBox.h
|
| index efbe2f6b79bfdf6ae0a266cc4018fd0b6c919a08..0193429e7acd95adca5601c2c9fdbcad2650b2b4 100644
|
| --- a/Source/core/rendering/svg/SVGRootInlineBox.h
|
| +++ b/Source/core/rendering/svg/SVGRootInlineBox.h
|
| @@ -39,14 +39,14 @@ public:
|
| {
|
| }
|
|
|
| - virtual bool isSVGRootInlineBox() const OVERRIDE FINAL { return true; }
|
| + virtual bool isSVGRootInlineBox() const OVERRIDE { return true; }
|
|
|
| - virtual float virtualLogicalHeight() const OVERRIDE FINAL { 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 FINAL;
|
| + virtual void paint(PaintInfo&, const LayoutPoint&, LayoutUnit lineTop, LayoutUnit lineBottom) OVERRIDE;
|
|
|
| - virtual void markDirty(bool dirty = true) OVERRIDE FINAL;
|
| + virtual void markDirty(bool dirty = true) OVERRIDE;
|
|
|
| void computePerCharacterLayoutInformation();
|
|
|
|
|