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

Unified Diff: Source/core/svg/SVGPathSegLinetoHorizontalAbs.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
« no previous file with comments | « Source/core/svg/SVGPathSegLinetoAbs.h ('k') | Source/core/svg/SVGPathSegLinetoHorizontalRel.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGPathSegLinetoHorizontalAbs.h
diff --git a/Source/core/svg/SVGPathSegLinetoHorizontalAbs.h b/Source/core/svg/SVGPathSegLinetoHorizontalAbs.h
index bb4ea9f9687cbd2ef4520224ceb41425ae1fb57b..19e086fef13022a745fb30d490c64e4df68addf7 100644
--- a/Source/core/svg/SVGPathSegLinetoHorizontalAbs.h
+++ b/Source/core/svg/SVGPathSegLinetoHorizontalAbs.h
@@ -43,8 +43,8 @@ private:
SVGPathSegLinetoHorizontalAbs(SVGPathElement* element, float x)
: SVGPathSegLinetoHorizontal(element, x) { }
- virtual unsigned short pathSegType() const override { return PATHSEG_LINETO_HORIZONTAL_ABS; }
- virtual String pathSegTypeAsLetter() const override { return "H"; }
+ unsigned short pathSegType() const override { return PATHSEG_LINETO_HORIZONTAL_ABS; }
+ String pathSegTypeAsLetter() const override { return "H"; }
yosin_UTC9 2015/07/08 05:01:33 FYI: It seems |pathSegTypeAsLetter()| is used only
};
} // namespace blink
« no previous file with comments | « Source/core/svg/SVGPathSegLinetoAbs.h ('k') | Source/core/svg/SVGPathSegLinetoHorizontalRel.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698