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

Unified Diff: Source/core/svg/SVGZoomEvent.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/SVGTextContentElement.cpp ('k') | Source/core/svg/SVGZoomEvent.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « Source/core/svg/SVGTextContentElement.cpp ('k') | Source/core/svg/SVGZoomEvent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698