| Index: Source/core/svg/SVGPathSegArcRel.h
|
| diff --git a/Source/core/svg/SVGPathSegArcRel.h b/Source/core/svg/SVGPathSegArcRel.h
|
| index 9179a821d26b824621c7677b6af9907ab3cd9183..984557d79f2f36c7d6feaecc542451b45d26ce21 100644
|
| --- a/Source/core/svg/SVGPathSegArcRel.h
|
| +++ b/Source/core/svg/SVGPathSegArcRel.h
|
| @@ -28,14 +28,14 @@ namespace blink {
|
|
|
| class SVGPathSegArcRel FINAL : public SVGPathSegArc {
|
| public:
|
| - static PassRefPtr<SVGPathSegArcRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag)
|
| + static PassRefPtr<SVGPathSegArcRel> create(SVGPathElement* element, float x, float y, float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag)
|
| {
|
| - return adoptRef(new SVGPathSegArcRel(element, role, x, y, r1, r2, angle, largeArcFlag, sweepFlag));
|
| + return adoptRef(new SVGPathSegArcRel(element, x, y, r1, r2, angle, largeArcFlag, sweepFlag));
|
| }
|
|
|
| private:
|
| - SVGPathSegArcRel(SVGPathElement* element, SVGPathSegRole role, float x, float y, float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag)
|
| - : SVGPathSegArc(element, role, x, y, r1, r2, angle, largeArcFlag, sweepFlag)
|
| + SVGPathSegArcRel(SVGPathElement* element, float x, float y, float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag)
|
| + : SVGPathSegArc(element, x, y, r1, r2, angle, largeArcFlag, sweepFlag)
|
| {
|
| ScriptWrappable::init(this);
|
| }
|
|
|