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

Unified Diff: Source/core/rendering/svg/SVGRootInlineBox.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/SVGRootInlineBox.h
diff --git a/Source/core/rendering/svg/SVGRootInlineBox.h b/Source/core/rendering/svg/SVGRootInlineBox.h
index 6baf829773d6cb154e66ed1103abca973d1d4f89..f9c5e6c16811d3ff8bf4e6546734bd7611300c74 100644
--- a/Source/core/rendering/svg/SVGRootInlineBox.h
+++ b/Source/core/rendering/svg/SVGRootInlineBox.h
@@ -29,7 +29,7 @@
namespace blink {
-class SVGRootInlineBox FINAL : public RootInlineBox {
+class SVGRootInlineBox final : public RootInlineBox {
public:
SVGRootInlineBox(RenderBlockFlow& block)
: RootInlineBox(block)
@@ -37,14 +37,14 @@ public:
{
}
- virtual bool isSVGRootInlineBox() const OVERRIDE { return true; }
+ virtual bool isSVGRootInlineBox() const override { return true; }
- virtual float virtualLogicalHeight() const OVERRIDE { 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;
+ virtual void paint(PaintInfo&, const LayoutPoint&, LayoutUnit lineTop, LayoutUnit lineBottom) override;
- virtual void markDirty() OVERRIDE;
+ virtual void markDirty() override;
void computePerCharacterLayoutInformation();
« no previous file with comments | « Source/core/rendering/svg/SVGInlineTextBox.h ('k') | Source/core/rendering/svg/SVGTextRunRenderingContext.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698