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

Unified Diff: Source/core/svg/SVGPathSegClosePath.h

Issue 631153003: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/svg (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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/svg/SVGPathSegArcRel.h ('k') | Source/core/svg/SVGPathSegCurvetoCubicAbs.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGPathSegClosePath.h
diff --git a/Source/core/svg/SVGPathSegClosePath.h b/Source/core/svg/SVGPathSegClosePath.h
index 62dda589cbbe7fe6dc3225bd231fb2e7debbc336..5c5052c39215666406e2586c6cc4b57319ea9596 100644
--- a/Source/core/svg/SVGPathSegClosePath.h
+++ b/Source/core/svg/SVGPathSegClosePath.h
@@ -25,7 +25,7 @@
namespace blink {
-class SVGPathSegClosePath FINAL : public SVGPathSegWithContext {
+class SVGPathSegClosePath final : public SVGPathSegWithContext {
DEFINE_WRAPPERTYPEINFO();
public:
static PassRefPtr<SVGPathSegClosePath> create(SVGPathElement* element)
@@ -37,8 +37,8 @@ private:
SVGPathSegClosePath(SVGPathElement* element)
: SVGPathSegWithContext(element) { }
- virtual unsigned short pathSegType() const OVERRIDE { return PATHSEG_CLOSEPATH; }
- virtual String pathSegTypeAsLetter() const OVERRIDE { return "Z"; }
+ virtual unsigned short pathSegType() const override { return PATHSEG_CLOSEPATH; }
+ virtual String pathSegTypeAsLetter() const override { return "Z"; }
};
} // namespace blink
« no previous file with comments | « Source/core/svg/SVGPathSegArcRel.h ('k') | Source/core/svg/SVGPathSegCurvetoCubicAbs.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698