Index: Source/core/svg/SVGPathSegLinetoVerticalAbs.h |
diff --git a/Source/core/svg/SVGPathSegLinetoVerticalAbs.h b/Source/core/svg/SVGPathSegLinetoVerticalAbs.h |
index 906a4264b3e40566a8d5b94e70647e31cfbe865d..1da3941f409d518c1bfe5446d06ea10aae40f26e 100644 |
--- a/Source/core/svg/SVGPathSegLinetoVerticalAbs.h |
+++ b/Source/core/svg/SVGPathSegLinetoVerticalAbs.h |
@@ -28,14 +28,14 @@ namespace blink { |
class SVGPathSegLinetoVerticalAbs FINAL : public SVGPathSegLinetoVertical { |
public: |
- static PassRefPtr<SVGPathSegLinetoVerticalAbs> create(SVGPathElement* element, SVGPathSegRole role, float y) |
+ static PassRefPtr<SVGPathSegLinetoVerticalAbs> create(SVGPathElement* element, float y) |
{ |
- return adoptRef(new SVGPathSegLinetoVerticalAbs(element, role, y)); |
+ return adoptRef(new SVGPathSegLinetoVerticalAbs(element, y)); |
} |
private: |
- SVGPathSegLinetoVerticalAbs(SVGPathElement* element, SVGPathSegRole role, float y) |
- : SVGPathSegLinetoVertical(element, role, y) |
+ SVGPathSegLinetoVerticalAbs(SVGPathElement* element, float y) |
+ : SVGPathSegLinetoVertical(element, y) |
{ |
ScriptWrappable::init(this); |
} |