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

Unified Diff: Source/core/svg/SVGPathSegLinetoAbs.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/SVGPathSegLinetoAbs.h
diff --git a/Source/core/svg/SVGPathSegLinetoAbs.h b/Source/core/svg/SVGPathSegLinetoAbs.h
index ee575eabfd24b579705866bb43fa4e851a27f5be..b452ba35c7538679399ef2eca12c3ba3643d90f2 100644
--- a/Source/core/svg/SVGPathSegLinetoAbs.h
+++ b/Source/core/svg/SVGPathSegLinetoAbs.h
@@ -26,7 +26,7 @@
namespace WebCore {
-class SVGPathSegLinetoAbs : public SVGPathSegSingleCoordinate {
+class SVGPathSegLinetoAbs FINAL : public SVGPathSegSingleCoordinate {
public:
static PassRefPtr<SVGPathSegLinetoAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y)
{
@@ -40,8 +40,8 @@ private:
ScriptWrappable::init(this);
}
- virtual unsigned short pathSegType() const { return PATHSEG_LINETO_ABS; }
- virtual String pathSegTypeAsLetter() const { return "L"; }
+ virtual unsigned short pathSegType() const OVERRIDE { return PATHSEG_LINETO_ABS; }
+ virtual String pathSegTypeAsLetter() const OVERRIDE { return "L"; }
};
} // namespace WebCore
« no previous file with comments | « Source/core/svg/SVGPathSegCurvetoQuadraticSmoothRel.h ('k') | Source/core/svg/SVGPathSegLinetoHorizontalAbs.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698