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

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

Issue 132233016: [SVG] SVGAnimatedPointList migration to new SVG property impl. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: set NeedsRebaseline Created 6 years, 11 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.idl ('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 09d5b8d2a8b586d8fa36601de1046cb22a975742..c6aaa5c4dc4d9e50b9c753a4fedaed5011730afe 100644
--- a/Source/core/svg/SVGZoomEvent.h
+++ b/Source/core/svg/SVGZoomEvent.h
@@ -38,12 +38,12 @@ public:
float previousScale() const;
void setPreviousScale(float);
- SVGPoint previousTranslate() const;
+ PassRefPtr<SVGPointTearOff> previousTranslate() const;
float newScale() const;
void setNewScale(float);
- SVGPoint newTranslate() const;
+ PassRefPtr<SVGPointTearOff> newTranslate() const;
virtual const AtomicString& interfaceName() const OVERRIDE;
@@ -53,8 +53,8 @@ private:
float m_newScale;
float m_previousScale;
- SVGPoint m_newTranslate;
- SVGPoint m_previousTranslate;
+ FloatPoint m_newTranslate;
+ FloatPoint m_previousTranslate;
};
} // namespace WebCore
« no previous file with comments | « Source/core/svg/SVGTextContentElement.idl ('k') | Source/core/svg/SVGZoomEvent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698