Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(617)

Unified Diff: Source/core/rendering/svg/RenderSVGInlineText.h

Issue 135563002: Update remaining rendering classes to use OVERRIDE / FINAL when needed (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/rendering/svg/RenderSVGInline.h ('k') | Source/core/rendering/svg/RenderSVGModelObject.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/svg/RenderSVGInlineText.h
diff --git a/Source/core/rendering/svg/RenderSVGInlineText.h b/Source/core/rendering/svg/RenderSVGInlineText.h
index 8647acd1f9073961717f01d7bc1c34c9cbeca33e..011eaf9fafc8e32607b112529049a9d2941bc33c 100644
--- a/Source/core/rendering/svg/RenderSVGInlineText.h
+++ b/Source/core/rendering/svg/RenderSVGInlineText.h
@@ -45,20 +45,20 @@ public:
FloatRect floatLinesBoundingBox() const;
private:
- virtual const char* renderName() const { return "RenderSVGInlineText"; }
+ virtual const char* renderName() const OVERRIDE { return "RenderSVGInlineText"; }
- virtual void setTextInternal(PassRefPtr<StringImpl>);
- virtual void styleDidChange(StyleDifference, const RenderStyle*);
+ virtual void setTextInternal(PassRefPtr<StringImpl>) OVERRIDE;
+ virtual void styleDidChange(StyleDifference, const RenderStyle*) OVERRIDE;
- virtual FloatRect objectBoundingBox() const { return floatLinesBoundingBox(); }
+ virtual FloatRect objectBoundingBox() const OVERRIDE { return floatLinesBoundingBox(); }
- virtual bool isSVGInlineText() const OVERRIDE FINAL { return true; }
- virtual bool isSVG() const OVERRIDE FINAL { return true; }
+ virtual bool isSVGInlineText() const OVERRIDE { return true; }
+ virtual bool isSVG() const OVERRIDE { return true; }
- virtual PositionWithAffinity positionForPoint(const LayoutPoint&) OVERRIDE FINAL;
- virtual LayoutRect localCaretRect(InlineBox*, int caretOffset, LayoutUnit* extraWidthToEndOfLine = 0);
- virtual IntRect linesBoundingBox() const;
- virtual InlineTextBox* createTextBox();
+ virtual PositionWithAffinity positionForPoint(const LayoutPoint&) OVERRIDE;
+ virtual LayoutRect localCaretRect(InlineBox*, int caretOffset, LayoutUnit* extraWidthToEndOfLine = 0) OVERRIDE;
+ virtual IntRect linesBoundingBox() const OVERRIDE;
+ virtual InlineTextBox* createTextBox() OVERRIDE;
float m_scalingFactor;
Font m_scaledFont;
« no previous file with comments | « Source/core/rendering/svg/RenderSVGInline.h ('k') | Source/core/rendering/svg/RenderSVGModelObject.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698