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

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

Issue 1212253012: Fix virtual/override/final usage in Source/core/svg/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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/SVGPathSegMovetoRel.h
diff --git a/Source/core/svg/SVGPathSegMovetoRel.h b/Source/core/svg/SVGPathSegMovetoRel.h
index 8168d81da1594d426ff34f5fc086bc8af276530c..ca8eea2cf51ddd39a98e464df3a97747b59fe4fb 100644
--- a/Source/core/svg/SVGPathSegMovetoRel.h
+++ b/Source/core/svg/SVGPathSegMovetoRel.h
@@ -43,8 +43,8 @@ private:
SVGPathSegMovetoRel(SVGPathElement* element, float x, float y)
: SVGPathSegSingleCoordinate(element, x, y) { }
- virtual unsigned short pathSegType() const override { return PATHSEG_MOVETO_REL; }
- virtual String pathSegTypeAsLetter() const override { return "m"; }
+ unsigned short pathSegType() const override { return PATHSEG_MOVETO_REL; }
+ String pathSegTypeAsLetter() const override { return "m"; }
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698