| Index: Source/core/svg/SVGPathSegCurvetoCubicSmooth.h
|
| diff --git a/Source/core/svg/SVGPathSegCurvetoCubicSmooth.h b/Source/core/svg/SVGPathSegCurvetoCubicSmooth.h
|
| index 63a2f695d277cfeb9051def5f473c0c2c52303b5..0890503507c0d5cd5d6284af03495ea2f17d9149 100644
|
| --- a/Source/core/svg/SVGPathSegCurvetoCubicSmooth.h
|
| +++ b/Source/core/svg/SVGPathSegCurvetoCubicSmooth.h
|
| @@ -27,8 +27,8 @@ namespace blink {
|
|
|
| class SVGPathSegCurvetoCubicSmooth : public SVGPathSegWithContext {
|
| public:
|
| - SVGPathSegCurvetoCubicSmooth(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x2, float y2)
|
| - : SVGPathSegWithContext(element, role)
|
| + SVGPathSegCurvetoCubicSmooth(SVGPathElement* element, float x, float y, float x2, float y2)
|
| + : SVGPathSegWithContext(element)
|
| , m_x(x)
|
| , m_y(y)
|
| , m_x2(x2)
|
|
|