Index: Source/core/svg/SVGPathSegMovetoRel.h |
diff --git a/Source/core/svg/SVGPathSegMovetoRel.h b/Source/core/svg/SVGPathSegMovetoRel.h |
index 61018a96bbaa6f031de45f04ff15c7e7b5052cb2..98e8565d91be80c030b241c48f2bceee530f5a30 100644 |
--- a/Source/core/svg/SVGPathSegMovetoRel.h |
+++ b/Source/core/svg/SVGPathSegMovetoRel.h |
@@ -28,14 +28,14 @@ namespace blink { |
class SVGPathSegMovetoRel FINAL : public SVGPathSegSingleCoordinate { |
public: |
- static PassRefPtr<SVGPathSegMovetoRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y) |
+ static PassRefPtr<SVGPathSegMovetoRel> create(SVGPathElement* element, float x, float y) |
{ |
- return adoptRef(new SVGPathSegMovetoRel(element, role, x, y)); |
+ return adoptRef(new SVGPathSegMovetoRel(element, x, y)); |
} |
private: |
- SVGPathSegMovetoRel(SVGPathElement* element, SVGPathSegRole role, float x, float y) |
- : SVGPathSegSingleCoordinate(element, role, x, y) |
+ SVGPathSegMovetoRel(SVGPathElement* element, float x, float y) |
+ : SVGPathSegSingleCoordinate(element, x, y) |
{ |
ScriptWrappable::init(this); |
} |