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

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

Issue 456763002: Get rid of SVGPathSegRole (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 4 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/SVGPathSegListBuilder.cpp ('k') | Source/core/svg/SVGPathSegMovetoRel.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGPathSegMovetoAbs.h
diff --git a/Source/core/svg/SVGPathSegMovetoAbs.h b/Source/core/svg/SVGPathSegMovetoAbs.h
index effc69de4f978aca144efef2c0a67b94852cc995..0c68f96278678b5243cb25bc92f51767aea86e15 100644
--- a/Source/core/svg/SVGPathSegMovetoAbs.h
+++ b/Source/core/svg/SVGPathSegMovetoAbs.h
@@ -28,14 +28,14 @@ namespace blink {
class SVGPathSegMovetoAbs FINAL : public SVGPathSegSingleCoordinate {
public:
- static PassRefPtr<SVGPathSegMovetoAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y)
+ static PassRefPtr<SVGPathSegMovetoAbs> create(SVGPathElement* element, float x, float y)
{
- return adoptRef(new SVGPathSegMovetoAbs(element, role, x, y));
+ return adoptRef(new SVGPathSegMovetoAbs(element, x, y));
}
private:
- SVGPathSegMovetoAbs(SVGPathElement* element, SVGPathSegRole role, float x, float y)
- : SVGPathSegSingleCoordinate(element, role, x, y)
+ SVGPathSegMovetoAbs(SVGPathElement* element, float x, float y)
+ : SVGPathSegSingleCoordinate(element, x, y)
{
ScriptWrappable::init(this);
}
« no previous file with comments | « Source/core/svg/SVGPathSegListBuilder.cpp ('k') | Source/core/svg/SVGPathSegMovetoRel.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698