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

Unified Diff: Source/core/rendering/svg/RenderSVGTSpan.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
« no previous file with comments | « Source/core/rendering/svg/RenderSVGShape.h ('k') | Source/core/rendering/svg/RenderSVGText.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/svg/RenderSVGTSpan.h
diff --git a/Source/core/rendering/svg/RenderSVGTSpan.h b/Source/core/rendering/svg/RenderSVGTSpan.h
index d4893f79939c9c69b984e9b9005325ebfa5ad105..dcc0465a1e9641c9ab57c5fb426662bbc4700425 100644
--- a/Source/core/rendering/svg/RenderSVGTSpan.h
+++ b/Source/core/rendering/svg/RenderSVGTSpan.h
@@ -25,13 +25,13 @@
#include "core/rendering/svg/RenderSVGInline.h"
namespace blink {
-class RenderSVGTSpan FINAL : public RenderSVGInline {
+class RenderSVGTSpan final : public RenderSVGInline {
public:
explicit RenderSVGTSpan(Element*);
- virtual bool isChildAllowed(RenderObject* child, RenderStyle*) const OVERRIDE;
+ virtual bool isChildAllowed(RenderObject* child, RenderStyle*) const override;
- virtual const char* renderName() const OVERRIDE { return "RenderSVGTSpan"; }
+ virtual const char* renderName() const override { return "RenderSVGTSpan"; }
};
}
« no previous file with comments | « Source/core/rendering/svg/RenderSVGShape.h ('k') | Source/core/rendering/svg/RenderSVGText.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698