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

Unified Diff: Source/core/svg/SVGAnimatorFactory.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/SVGAnimatedType.cpp ('k') | Source/core/svg/SVGGradientElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGAnimatorFactory.h
diff --git a/Source/core/svg/SVGAnimatorFactory.h b/Source/core/svg/SVGAnimatorFactory.h
index 7f1dcc5860499c1948a4c3697fffde408ede3bf3..59bef15c9ff15ec1b98817f6e4213309c6d2d3b7 100644
--- a/Source/core/svg/SVGAnimatorFactory.h
+++ b/Source/core/svg/SVGAnimatorFactory.h
@@ -44,8 +44,6 @@ public:
switch (attributeType) {
case AnimatedPath:
return adoptPtr(new SVGAnimatedPathAnimator(animationElement, contextElement));
- case AnimatedTransformList:
- return adoptPtr(new SVGAnimatedTransformListAnimator(animationElement, contextElement));
// Below properties have migrated to new property implementation.
case AnimatedAngle:
case AnimatedEnumeration:
@@ -62,11 +60,13 @@ public:
case AnimatedPreserveAspectRatio:
case AnimatedRect:
case AnimatedString:
+ case AnimatedTransformList:
return adoptPtr(new SVGAnimatedNewPropertyAnimator(attributeType, animationElement, contextElement));
- // SVGAnimatedPoint/SVGAnimatedStringList does not exist.
+ // SVGAnimated{Point,StringList,Transform} does not exist.
case AnimatedPoint:
case AnimatedStringList:
+ case AnimatedTransform:
ASSERT_NOT_REACHED();
case AnimatedUnknown:
« no previous file with comments | « Source/core/svg/SVGAnimatedType.cpp ('k') | Source/core/svg/SVGGradientElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698