| Index: Source/core/svg/SVGPathSegWithContext.h
|
| diff --git a/Source/core/svg/SVGPathSegWithContext.h b/Source/core/svg/SVGPathSegWithContext.h
|
| index 1c6303d7eda21ac0381f60663f92859f1f860758..022fd526c52d44848df13d674122e63cbf3c8e65 100644
|
| --- a/Source/core/svg/SVGPathSegWithContext.h
|
| +++ b/Source/core/svg/SVGPathSegWithContext.h
|
| @@ -27,8 +27,7 @@ namespace blink {
|
| // FIXME: This should be deprecated.
|
| class SVGPathSegWithContext : public SVGPathSeg {
|
| public:
|
| - // FIXME: remove second unused argument from all derived classes.
|
| - SVGPathSegWithContext(SVGPathElement* contextElement, SVGPathSegRole)
|
| + SVGPathSegWithContext(SVGPathElement* contextElement)
|
| : SVGPathSeg(contextElement)
|
| {
|
| }
|
| @@ -51,8 +50,8 @@ public:
|
| }
|
|
|
| protected:
|
| - SVGPathSegSingleCoordinate(SVGPathElement* element, SVGPathSegRole role, float x, float y)
|
| - : SVGPathSegWithContext(element, role)
|
| + SVGPathSegSingleCoordinate(SVGPathElement* element, float x, float y)
|
| + : SVGPathSegWithContext(element)
|
| , m_x(x)
|
| , m_y(y)
|
| {
|
|
|