| Index: Source/core/svg/SVGPathSegCurvetoCubicSmoothAbs.h
|
| diff --git a/Source/core/svg/SVGPathSegCurvetoCubicSmoothAbs.h b/Source/core/svg/SVGPathSegCurvetoCubicSmoothAbs.h
|
| index 4302618f5f89979fb6967912f5545c9e64840da3..21cf17cd2a7808aa36e9d579d4dd54d4722c6610 100644
|
| --- a/Source/core/svg/SVGPathSegCurvetoCubicSmoothAbs.h
|
| +++ b/Source/core/svg/SVGPathSegCurvetoCubicSmoothAbs.h
|
| @@ -28,14 +28,14 @@ namespace blink {
|
|
|
| class SVGPathSegCurvetoCubicSmoothAbs FINAL : public SVGPathSegCurvetoCubicSmooth {
|
| public:
|
| - static PassRefPtr<SVGPathSegCurvetoCubicSmoothAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x2, float y2)
|
| + static PassRefPtr<SVGPathSegCurvetoCubicSmoothAbs> create(SVGPathElement* element, float x, float y, float x2, float y2)
|
| {
|
| - return adoptRef(new SVGPathSegCurvetoCubicSmoothAbs(element, role, x, y, x2, y2));
|
| + return adoptRef(new SVGPathSegCurvetoCubicSmoothAbs(element, x, y, x2, y2));
|
| }
|
|
|
| private:
|
| - SVGPathSegCurvetoCubicSmoothAbs(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x2, float y2)
|
| - : SVGPathSegCurvetoCubicSmooth(element, role, x, y, x2, y2)
|
| + SVGPathSegCurvetoCubicSmoothAbs(SVGPathElement* element, float x, float y, float x2, float y2)
|
| + : SVGPathSegCurvetoCubicSmooth(element, x, y, x2, y2)
|
| {
|
| ScriptWrappable::init(this);
|
| }
|
|
|