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