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

Unified Diff: Source/core/svg/SVGSVGElement.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/SVGRadialGradientElement.cpp ('k') | Source/core/svg/SVGSVGElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGSVGElement.h
diff --git a/Source/core/svg/SVGSVGElement.h b/Source/core/svg/SVGSVGElement.h
index 38386b174237052ac0a04e0eb0c7c75825a3c534..235a0bf690ffb0984cae223ff667edab7d7088af 100644
--- a/Source/core/svg/SVGSVGElement.h
+++ b/Source/core/svg/SVGSVGElement.h
@@ -31,10 +31,10 @@
namespace WebCore {
+class SVGMatrixTearOff;
class SVGAngleTearOff;
-class SVGMatrix;
class SVGNumberTearOff;
-class SVGTransform;
+class SVGTransformTearOff;
class SVGViewSpec;
class SVGViewElement;
class SMILTimeContainer;
@@ -110,10 +110,10 @@ public:
static PassRefPtr<SVGLengthTearOff> createSVGLength();
static PassRefPtr<SVGAngleTearOff> createSVGAngle();
static PassRefPtr<SVGPointTearOff> createSVGPoint();
- static SVGMatrix createSVGMatrix();
+ static PassRefPtr<SVGMatrixTearOff> createSVGMatrix();
static PassRefPtr<SVGRectTearOff> createSVGRect();
- static SVGTransform createSVGTransform();
- static SVGTransform createSVGTransformFromMatrix(const SVGMatrix&);
+ static PassRefPtr<SVGTransformTearOff> createSVGTransform();
+ static PassRefPtr<SVGTransformTearOff> createSVGTransformFromMatrix(PassRefPtr<SVGMatrixTearOff>);
AffineTransform viewBoxToViewTransform(float viewWidth, float viewHeight) const;
« no previous file with comments | « Source/core/svg/SVGRadialGradientElement.cpp ('k') | Source/core/svg/SVGSVGElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698