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

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: 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
Index: Source/core/svg/SVGAnimatorFactory.h
diff --git a/Source/core/svg/SVGAnimatorFactory.h b/Source/core/svg/SVGAnimatorFactory.h
index c67f27c40b6dddcd7e036246a9f15ebfe6637534..6401be3b83c89df170c55f39353abbc8de11ebb8 100644
--- a/Source/core/svg/SVGAnimatorFactory.h
+++ b/Source/core/svg/SVGAnimatorFactory.h
@@ -54,8 +54,6 @@ public:
return adoptPtr(new SVGAnimatedIntegerOptionalIntegerAnimator(animationElement, contextElement));
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 AnimatedBoolean:
case AnimatedColor:
@@ -68,11 +66,14 @@ public:
case AnimatedPreserveAspectRatio:
case AnimatedRect:
case AnimatedString:
+ case AnimatedTransformList:
return adoptPtr(new SVGAnimatedNewPropertyAnimator(attributeType, animationElement, contextElement));
- // SVGAnimatedPoint/SVGAnimatedStringList does not exist.
+ // SVGAnimated{Matrix,Point,StringListTransform,} does not exist.
haraken 2014/02/11 17:00:21 StringList,Transform
kouhei (in TOK) 2014/02/12 01:57:49 Done.
+ case AnimatedMatrix:
case AnimatedPoint:
case AnimatedStringList:
+ case AnimatedTransform:
ASSERT_NOT_REACHED();
case AnimatedUnknown:

Powered by Google App Engine
This is Rietveld 408576698