| Index: Source/core/svg/SVGAnimatorFactory.h
|
| diff --git a/Source/core/svg/SVGAnimatorFactory.h b/Source/core/svg/SVGAnimatorFactory.h
|
| index c67f27c40b6dddcd7e036246a9f15ebfe6637534..3b5f17421a2bb14f77d38320812239fe53d5c92a 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,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:
|
|
|