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

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

Issue 19096011: Get rid of SVGRect special case from the bindings generator (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase on master 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 14a365f1ebae7056d3c7f122eee247c522d2b397..3d2ea731aefd595765f953ea0e7709136f60c768 100644
--- a/Source/core/svg/SVGZoomEvent.h
+++ b/Source/core/svg/SVGZoomEvent.h
@@ -24,6 +24,7 @@
#include "core/dom/UIEvent.h"
#include "core/svg/SVGPoint.h"
+#include "core/svg/SVGRect.h"
namespace WebCore {
@@ -32,7 +33,7 @@ public:
static PassRefPtr<SVGZoomEvent> create() { return adoptRef(new SVGZoomEvent); }
// 'SVGZoomEvent' functions
- FloatRect zoomRectScreen() const;
+ SVGRect zoomRectScreen() const;
float previousScale() const;
void setPreviousScale(float);
@@ -52,7 +53,7 @@ private:
float m_newScale;
float m_previousScale;
- FloatRect m_zoomRectScreen;
+ SVGRect m_zoomRectScreen;
SVGPoint m_newTranslate;
SVGPoint m_previousTranslate;
« 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