Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1222)

Unified Diff: Source/core/svg/SVGPathSegLinetoHorizontalAbs.h

Issue 18706003: Get rid of SVGPathSeg* special casing in the bindings generator (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/svg/SVGPathSegLinetoHorizontal.h ('k') | Source/core/svg/SVGPathSegLinetoHorizontalRel.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGPathSegLinetoHorizontalAbs.h
diff --git a/Source/core/svg/SVGPathSegLinetoHorizontal.h b/Source/core/svg/SVGPathSegLinetoHorizontalAbs.h
similarity index 58%
copy from Source/core/svg/SVGPathSegLinetoHorizontal.h
copy to Source/core/svg/SVGPathSegLinetoHorizontalAbs.h
index 9dc04b0349acb806ddc67edd9ab77c0c6d20eb1a..8e8f8060f39d42cfbe1855946016ac4dd274c209 100644
--- a/Source/core/svg/SVGPathSegLinetoHorizontal.h
+++ b/Source/core/svg/SVGPathSegLinetoHorizontalAbs.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,32 +19,13 @@
* Boston, MA 02110-1301, USA.
*/
-#ifndef SVGPathSegLinetoHorizontal_h
-#define SVGPathSegLinetoHorizontal_h
+#ifndef SVGPathSegLinetoHorizontalAbs_h
+#define SVGPathSegLinetoHorizontalAbs_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)
@@ -62,24 +44,6 @@ private:
virtual String pathSegTypeAsLetter() const { return "H"; }
};
-class SVGPathSegLinetoHorizontalRel : public SVGPathSegLinetoHorizontal {
-public:
- static PassRefPtr<SVGPathSegLinetoHorizontalRel> create(SVGPathElement* element, SVGPathSegRole role, float x)
- {
- return adoptRef(new SVGPathSegLinetoHorizontalRel(element, role, x));
- }
-
-private:
- SVGPathSegLinetoHorizontalRel(SVGPathElement* element, SVGPathSegRole role, float x)
- : SVGPathSegLinetoHorizontal(element, role, x)
- {
- ScriptWrappable::init(this);
- }
-
- virtual unsigned short pathSegType() const { return PATHSEG_LINETO_HORIZONTAL_REL; }
- virtual String pathSegTypeAsLetter() const { return "h"; }
-};
-
} // namespace WebCore
#endif
« no previous file with comments | « Source/core/svg/SVGPathSegLinetoHorizontal.h ('k') | Source/core/svg/SVGPathSegLinetoHorizontalRel.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698