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

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

Issue 153883003: [SVG] SVGAnimatedTransform{,List} migration to new SVG property impl. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: remove m_zoomAndPan Created 6 years, 10 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/SVGPointList.cpp ('k') | Source/core/svg/SVGPointTearOff.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGPointTearOff.h
diff --git a/Source/core/svg/SVGPointTearOff.h b/Source/core/svg/SVGPointTearOff.h
index 88d0ad995d82f4efcd007a433d6344792b22fa96..0560f7146a508d7e77e42486701bf0b4110999ff 100644
--- a/Source/core/svg/SVGPointTearOff.h
+++ b/Source/core/svg/SVGPointTearOff.h
@@ -37,7 +37,7 @@
namespace WebCore {
-class SVGMatrix;
+class SVGMatrixTearOff;
class SVGPointTearOff : public NewSVGPropertyTearOff<SVGPoint>, public ScriptWrappable {
public:
@@ -51,7 +51,7 @@ public:
float x() { return target()->x(); }
float y() { return target()->y(); }
- PassRefPtr<SVGPointTearOff> matrixTransform(SVGMatrix);
+ PassRefPtr<SVGPointTearOff> matrixTransform(PassRefPtr<SVGMatrixTearOff>);
protected:
SVGPointTearOff(PassRefPtr<SVGPoint>, SVGElement* contextElement, PropertyIsAnimValType, const QualifiedName& attributeName = nullQName());
« no previous file with comments | « Source/core/svg/SVGPointList.cpp ('k') | Source/core/svg/SVGPointTearOff.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698