| Index: Source/core/svg/SVGPathSegCurvetoQuadratic.h
|
| diff --git a/Source/core/svg/SVGPathSegCurvetoQuadratic.h b/Source/core/svg/SVGPathSegCurvetoQuadratic.h
|
| index d650e31324a7481e25b9539b52df86e1b2d4e90c..048cda4fe746104452ab7d752b7dde228acfb843 100644
|
| --- a/Source/core/svg/SVGPathSegCurvetoQuadratic.h
|
| +++ b/Source/core/svg/SVGPathSegCurvetoQuadratic.h
|
| @@ -27,8 +27,8 @@ namespace blink {
|
|
|
| class SVGPathSegCurvetoQuadratic : public SVGPathSegWithContext {
|
| public:
|
| - SVGPathSegCurvetoQuadratic(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1)
|
| - : SVGPathSegWithContext(element, role)
|
| + SVGPathSegCurvetoQuadratic(SVGPathElement* element, float x, float y, float x1, float y1)
|
| + : SVGPathSegWithContext(element)
|
| , m_x(x)
|
| , m_y(y)
|
| , m_x1(x1)
|
|
|