Index: Source/core/svg/SVGPathSegArcRel.h |
diff --git a/Source/core/svg/SVGPathSegClosePath.h b/Source/core/svg/SVGPathSegArcRel.h |
similarity index 55% |
copy from Source/core/svg/SVGPathSegClosePath.h |
copy to Source/core/svg/SVGPathSegArcRel.h |
index 4c6adc224515722f30292ffe43a4c03923b0855a..076c930bb1240352263cfe040e1c2acf47c68920 100644 |
--- a/Source/core/svg/SVGPathSegClosePath.h |
+++ b/Source/core/svg/SVGPathSegArcRel.h |
@@ -1,6 +1,7 @@ |
/* |
* Copyright (C) 2004, 2005, 2006 Nikolas Zimmermann <zimmermann@kde.org> |
- * Copyright (C) 2004, 2005, 2006 Rob Buis <buis@kde.org> |
+ * Copyright (C) 2004, 2005, 2006, 2008 Rob Buis <buis@kde.org> |
+ * Copyright (C) 2013 Samsung Electronics. All rights reserved. |
* |
* This library is free software; you can redistribute it and/or |
* modify it under the terms of the GNU Library General Public |
@@ -18,29 +19,29 @@ |
* Boston, MA 02110-1301, USA. |
*/ |
-#ifndef SVGPathSegClosePath_h |
-#define SVGPathSegClosePath_h |
+#ifndef SVGPathSegArcRel_h |
+#define SVGPathSegArcRel_h |
-#include "core/svg/SVGPathSegWithContext.h" |
+#include "core/svg/SVGPathSegArc.h" |
namespace WebCore { |
-class SVGPathSegClosePath : public SVGPathSegWithContext { |
+class SVGPathSegArcRel : public SVGPathSegArc { |
public: |
- static PassRefPtr<SVGPathSegClosePath> create(SVGPathElement* element, SVGPathSegRole role) |
+ static PassRefPtr<SVGPathSegArcRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag) |
{ |
- return adoptRef(new SVGPathSegClosePath(element, role)); |
+ return adoptRef(new SVGPathSegArcRel(element, role, x, y, r1, r2, angle, largeArcFlag, sweepFlag)); |
} |
private: |
- SVGPathSegClosePath(SVGPathElement* element, SVGPathSegRole role) |
- : SVGPathSegWithContext(element, role) |
+ 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) |
{ |
ScriptWrappable::init(this); |
} |
- virtual unsigned short pathSegType() const { return PATHSEG_CLOSEPATH; } |
- virtual String pathSegTypeAsLetter() const { return "Z"; } |
+ virtual unsigned short pathSegType() const { return PATHSEG_ARC_REL; } |
+ virtual String pathSegTypeAsLetter() const { return "a"; } |
}; |
} // namespace WebCore |