| 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);
|
| }
|
|
|