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

Unified Diff: Source/core/svg/SVGPathSegCurvetoCubicRel.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/SVGPathSegCurvetoCubicRel.h
diff --git a/Source/core/svg/SVGPathSegCurvetoCubicRel.h b/Source/core/svg/SVGPathSegCurvetoCubicRel.h
index 377dacb5ce92546e0d774c2185505df9ffd0d073..806c6fdf8651904c3f84a470dcc59ee99f726953 100644
--- a/Source/core/svg/SVGPathSegCurvetoCubicRel.h
+++ b/Source/core/svg/SVGPathSegCurvetoCubicRel.h
@@ -43,8 +43,8 @@ private:
SVGPathSegCurvetoCubicRel(SVGPathElement* element, float x, float y, float x1, float y1, float x2, float y2)
: SVGPathSegCurvetoCubic(element, x, y, x1, y1, x2, y2) { }
- virtual unsigned short pathSegType() const override { return PATHSEG_CURVETO_CUBIC_REL; }
- virtual String pathSegTypeAsLetter() const override { return "c"; }
+ unsigned short pathSegType() const override { return PATHSEG_CURVETO_CUBIC_REL; }
+ String pathSegTypeAsLetter() const override { return "c"; }
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698