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

Unified Diff: Source/core/svg/SVGPathSegCurvetoQuadraticRel.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
Index: Source/core/svg/SVGPathSegCurvetoQuadraticRel.h
diff --git a/Source/core/svg/SVGPathSegCurvetoQuadraticRel.h b/Source/core/svg/SVGPathSegCurvetoQuadraticRel.h
index 2c51a8be7c31446e02125ebbb07c2feb0fc8e2c9..ad2725ab09d2b2ad02c0bcbc18b5886fadcd5faf 100644
--- a/Source/core/svg/SVGPathSegCurvetoQuadraticRel.h
+++ b/Source/core/svg/SVGPathSegCurvetoQuadraticRel.h
@@ -26,7 +26,7 @@
namespace WebCore {
-class SVGPathSegCurvetoQuadraticRel : public SVGPathSegCurvetoQuadratic {
+class SVGPathSegCurvetoQuadraticRel FINAL : public SVGPathSegCurvetoQuadratic {
public:
static PassRefPtr<SVGPathSegCurvetoQuadraticRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1)
{
@@ -40,8 +40,8 @@ private:
ScriptWrappable::init(this);
}
- virtual unsigned short pathSegType() const { return PATHSEG_CURVETO_QUADRATIC_REL; }
- virtual String pathSegTypeAsLetter() const { return "q"; }
+ virtual unsigned short pathSegType() const OVERRIDE { return PATHSEG_CURVETO_QUADRATIC_REL; }
+ virtual String pathSegTypeAsLetter() const OVERRIDE { return "q"; }
};
} // namespace WebCore
« no previous file with comments | « Source/core/svg/SVGPathSegCurvetoQuadraticAbs.h ('k') | Source/core/svg/SVGPathSegCurvetoQuadraticSmoothAbs.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698