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 |