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

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

Issue 640593002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/[css|rendering|clipboard] (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased the patch Created 6 years, 2 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
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;
« no previous file with comments | « Source/core/rendering/svg/RenderSVGViewportContainer.h ('k') | Source/core/rendering/svg/SVGInlineTextBox.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698