| Index: Source/core/rendering/svg/SVGInlineFlowBox.h
|
| diff --git a/Source/core/rendering/svg/SVGInlineFlowBox.h b/Source/core/rendering/svg/SVGInlineFlowBox.h
|
| index a07d01b4af74c743eb4655bd4aa7612c5d01412e..f886e313cccacc71e025133394b4156a5a9aa700 100644
|
| --- a/Source/core/rendering/svg/SVGInlineFlowBox.h
|
| +++ b/Source/core/rendering/svg/SVGInlineFlowBox.h
|
| @@ -25,7 +25,7 @@
|
|
|
| namespace blink {
|
|
|
| -class SVGInlineFlowBox FINAL : public InlineFlowBox {
|
| +class SVGInlineFlowBox final : public InlineFlowBox {
|
| public:
|
| SVGInlineFlowBox(RenderObject& obj)
|
| : InlineFlowBox(obj)
|
| @@ -33,14 +33,14 @@ public:
|
| {
|
| }
|
|
|
| - virtual bool isSVGInlineFlowBox() const OVERRIDE { return true; }
|
| - virtual float virtualLogicalHeight() const OVERRIDE { return m_logicalHeight; }
|
| + virtual bool isSVGInlineFlowBox() const override { return true; }
|
| + virtual float virtualLogicalHeight() const override { return m_logicalHeight; }
|
| void setLogicalHeight(float h) { m_logicalHeight = h; }
|
|
|
| void paintSelectionBackground(PaintInfo&);
|
| - virtual void paint(PaintInfo&, const LayoutPoint&, LayoutUnit lineTop, LayoutUnit lineBottom) OVERRIDE;
|
| + virtual void paint(PaintInfo&, const LayoutPoint&, LayoutUnit lineTop, LayoutUnit lineBottom) override;
|
|
|
| - virtual FloatRect calculateBoundaries() const OVERRIDE;
|
| + virtual FloatRect calculateBoundaries() const override;
|
|
|
| private:
|
| float m_logicalHeight;
|
|
|