Index: Source/core/svg/SVGZoomEvent.h |
diff --git a/Source/core/svg/SVGZoomEvent.h b/Source/core/svg/SVGZoomEvent.h |
index 13d8e2a2f721f3fba99e26e6bd73bc0f6c3ef464..14a365f1ebae7056d3c7f122eee247c522d2b397 100644 |
--- a/Source/core/svg/SVGZoomEvent.h |
+++ b/Source/core/svg/SVGZoomEvent.h |
@@ -23,7 +23,7 @@ |
#define SVGZoomEvent_h |
#include "core/dom/UIEvent.h" |
-#include "core/platform/graphics/FloatRect.h" |
+#include "core/svg/SVGPoint.h" |
namespace WebCore { |
@@ -37,12 +37,12 @@ public: |
float previousScale() const; |
void setPreviousScale(float); |
- FloatPoint previousTranslate() const; |
+ SVGPoint previousTranslate() const; |
float newScale() const; |
void setNewScale(float); |
- FloatPoint newTranslate() const; |
+ SVGPoint newTranslate() const; |
virtual const AtomicString& interfaceName() const; |
@@ -54,8 +54,8 @@ private: |
FloatRect m_zoomRectScreen; |
- FloatPoint m_newTranslate; |
- FloatPoint m_previousTranslate; |
+ SVGPoint m_newTranslate; |
+ SVGPoint m_previousTranslate; |
}; |
} // namespace WebCore |