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: |