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

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

Issue 18098007: Get rid of SVGPoint special case from 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/SVGPoint.h ('k') | Source/core/svg/SVGSVGElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGPointList.h
diff --git a/Source/core/svg/SVGPointList.h b/Source/core/svg/SVGPointList.h
index 6ab8285018002b4bcd843fd5998decf5d98e818b..7b7ffd66680ec5eeab13282cfc8dd91852480c0c 100644
--- a/Source/core/svg/SVGPointList.h
+++ b/Source/core/svg/SVGPointList.h
@@ -21,14 +21,13 @@
#ifndef SVGPointList_h
#define SVGPointList_h
+#include "core/svg/SVGPoint.h"
#include "core/svg/properties/SVGPropertyTraits.h"
#include <wtf/Vector.h>
namespace WebCore {
-class FloatPoint;
-
-class SVGPointList : public Vector<FloatPoint> {
+class SVGPointList : public Vector<SVGPoint> {
public:
SVGPointList() { }
@@ -38,7 +37,7 @@ public:
template<>
struct SVGPropertyTraits<SVGPointList> {
static SVGPointList initialValue() { return SVGPointList(); }
- typedef FloatPoint ListItemType;
+ typedef SVGPoint ListItemType;
};
} // namespace WebCore
« no previous file with comments | « Source/core/svg/SVGPoint.h ('k') | Source/core/svg/SVGSVGElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698