| Index: Source/core/rendering/svg/SVGRootInlineBox.h
|
| diff --git a/Source/core/rendering/svg/SVGRootInlineBox.h b/Source/core/rendering/svg/SVGRootInlineBox.h
|
| index 068033a0a8a97e0914224d733101af64ac927463..b45e98246437921b9722d53e8ce2ff29d843f22e 100644
|
| --- a/Source/core/rendering/svg/SVGRootInlineBox.h
|
| +++ b/Source/core/rendering/svg/SVGRootInlineBox.h
|
| @@ -40,17 +40,17 @@ public:
|
| {
|
| }
|
|
|
| - virtual bool isSVGRootInlineBox() const { return true; }
|
| + virtual bool isSVGRootInlineBox() const OVERRIDE FINAL { return true; }
|
|
|
| - virtual float virtualLogicalHeight() const { return m_logicalHeight; }
|
| + virtual float virtualLogicalHeight() const OVERRIDE FINAL { return m_logicalHeight; }
|
| void setLogicalHeight(float height) { m_logicalHeight = height; }
|
|
|
| - virtual void paint(PaintInfo&, const LayoutPoint&, LayoutUnit lineTop, LayoutUnit lineBottom);
|
| + virtual void paint(PaintInfo&, const LayoutPoint&, LayoutUnit lineTop, LayoutUnit lineBottom) OVERRIDE FINAL;
|
|
|
| void computePerCharacterLayoutInformation();
|
|
|
| - virtual FloatRect objectBoundingBox() const { return FloatRect(); }
|
| - virtual FloatRect repaintRectInLocalCoordinates() const { return FloatRect(); }
|
| + FloatRect objectBoundingBox() const { return FloatRect(); }
|
| + FloatRect repaintRectInLocalCoordinates() const { return FloatRect(); }
|
|
|
| InlineBox* closestLeafChildForPosition(const LayoutPoint&);
|
|
|
|
|