Index: Source/core/svg/SVGPathSegLinetoVerticalRel.h |
diff --git a/Source/core/svg/SVGPathSegClosePath.h b/Source/core/svg/SVGPathSegLinetoVerticalRel.h |
similarity index 58% |
copy from Source/core/svg/SVGPathSegClosePath.h |
copy to Source/core/svg/SVGPathSegLinetoVerticalRel.h |
index 4c6adc224515722f30292ffe43a4c03923b0855a..f420315e32c4629558d678e9790581f50aa7463d 100644 |
--- a/Source/core/svg/SVGPathSegClosePath.h |
+++ b/Source/core/svg/SVGPathSegLinetoVerticalRel.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 SVGPathSegLinetoVerticalRel_h |
+#define SVGPathSegLinetoVerticalRel_h |
-#include "core/svg/SVGPathSegWithContext.h" |
+#include "core/svg/SVGPathSegLinetoVertical.h" |
namespace WebCore { |
-class SVGPathSegClosePath : public SVGPathSegWithContext { |
+class SVGPathSegLinetoVerticalRel : public SVGPathSegLinetoVertical { |
public: |
- static PassRefPtr<SVGPathSegClosePath> create(SVGPathElement* element, SVGPathSegRole role) |
+ static PassRefPtr<SVGPathSegLinetoVerticalRel> create(SVGPathElement* element, SVGPathSegRole role, float y) |
{ |
- return adoptRef(new SVGPathSegClosePath(element, role)); |
+ return adoptRef(new SVGPathSegLinetoVerticalRel(element, role, y)); |
} |
private: |
- SVGPathSegClosePath(SVGPathElement* element, SVGPathSegRole role) |
- : SVGPathSegWithContext(element, role) |
+ SVGPathSegLinetoVerticalRel(SVGPathElement* element, SVGPathSegRole role, float y) |
+ : SVGPathSegLinetoVertical(element, role, y) |
{ |
ScriptWrappable::init(this); |
} |
- virtual unsigned short pathSegType() const { return PATHSEG_CLOSEPATH; } |
- virtual String pathSegTypeAsLetter() const { return "Z"; } |
+ virtual unsigned short pathSegType() const { return PATHSEG_LINETO_VERTICAL_REL; } |
+ virtual String pathSegTypeAsLetter() const { return "v"; } |
}; |
} // namespace WebCore |