Index: Source/core/svg/SVGPathSegLinetoHorizontalRel.h |
diff --git a/Source/core/svg/SVGPathSegLinetoHorizontal.h b/Source/core/svg/SVGPathSegLinetoHorizontalRel.h |
similarity index 58% |
copy from Source/core/svg/SVGPathSegLinetoHorizontal.h |
copy to Source/core/svg/SVGPathSegLinetoHorizontalRel.h |
index 9dc04b0349acb806ddc67edd9ab77c0c6d20eb1a..974c41ce3c8fb451df60848c6a751a562c54f0c7 100644 |
--- a/Source/core/svg/SVGPathSegLinetoHorizontal.h |
+++ b/Source/core/svg/SVGPathSegLinetoHorizontalRel.h |
@@ -1,6 +1,7 @@ |
/* |
* Copyright (C) 2004, 2005, 2006 Nikolas Zimmermann <zimmermann@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,50 +19,13 @@ |
* Boston, MA 02110-1301, USA. |
*/ |
-#ifndef SVGPathSegLinetoHorizontal_h |
-#define SVGPathSegLinetoHorizontal_h |
+#ifndef SVGPathSegLinetoHorizontalRel_h |
+#define SVGPathSegLinetoHorizontalRel_h |
-#include "core/svg/SVGPathSegWithContext.h" |
+#include "core/svg/SVGPathSegLinetoHorizontal.h" |
namespace WebCore { |
-class SVGPathSegLinetoHorizontal : public SVGPathSegWithContext { |
-public: |
- SVGPathSegLinetoHorizontal(SVGPathElement* element, SVGPathSegRole role, float x) |
- : SVGPathSegWithContext(element, role) |
- , m_x(x) |
- { |
- } |
- |
- float x() const { return m_x; } |
- void setX(float x) |
- { |
- m_x = x; |
- commitChange(); |
- } |
- |
-private: |
- float m_x; |
-}; |
- |
-class SVGPathSegLinetoHorizontalAbs : public SVGPathSegLinetoHorizontal { |
-public: |
- static PassRefPtr<SVGPathSegLinetoHorizontalAbs> create(SVGPathElement* element, SVGPathSegRole role, float x) |
- { |
- return adoptRef(new SVGPathSegLinetoHorizontalAbs(element, role, x)); |
- } |
- |
-private: |
- SVGPathSegLinetoHorizontalAbs(SVGPathElement* element, SVGPathSegRole role, float x) |
- : SVGPathSegLinetoHorizontal(element, role, x) |
- { |
- ScriptWrappable::init(this); |
- } |
- |
- virtual unsigned short pathSegType() const { return PATHSEG_LINETO_HORIZONTAL_ABS; } |
- virtual String pathSegTypeAsLetter() const { return "H"; } |
-}; |
- |
class SVGPathSegLinetoHorizontalRel : public SVGPathSegLinetoHorizontal { |
public: |
static PassRefPtr<SVGPathSegLinetoHorizontalRel> create(SVGPathElement* element, SVGPathSegRole role, float x) |