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

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

Issue 134593005: Update SVG classes to use OVERRIDE / FINAL when needed (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
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/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 4c6adc224515722f30292ffe43a4c03923b0855a..5f2258f380fe909cfc785bd581885b0ba053161c 100644
--- a/Source/core/svg/SVGPathSegClosePath.h
+++ b/Source/core/svg/SVGPathSegClosePath.h
@@ -25,7 +25,7 @@
namespace WebCore {
-class SVGPathSegClosePath : public SVGPathSegWithContext {
+class SVGPathSegClosePath FINAL : public SVGPathSegWithContext {
public:
static PassRefPtr<SVGPathSegClosePath> create(SVGPathElement* element, SVGPathSegRole role)
{
@@ -39,8 +39,8 @@ private:
ScriptWrappable::init(this);
}
- virtual unsigned short pathSegType() const { return PATHSEG_CLOSEPATH; }
- virtual String pathSegTypeAsLetter() const { return "Z"; }
+ virtual unsigned short pathSegType() const OVERRIDE { return PATHSEG_CLOSEPATH; }
+ virtual String pathSegTypeAsLetter() const OVERRIDE { return "Z"; }
};
} // namespace WebCore
« 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