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

Unified Diff: Source/core/svg/SVGAnimatorFactory.h

Issue 148173018: [SVG] SVGAnimatedString{,List} migration to new SVG property impl. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: remove debug print Created 6 years, 11 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/SVGAnimationElement.cpp ('k') | Source/core/svg/SVGCursorElement.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 8223ce68b635c41c36e19dbdab7a358af8a83609..c67f27c40b6dddcd7e036246a9f15ebfe6637534 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 AnimatedString:
- return adoptPtr(new SVGAnimatedStringAnimator(animationElement, contextElement));
case AnimatedTransformList:
return adoptPtr(new SVGAnimatedTransformListAnimator(animationElement, contextElement));
// Below properties have migrated to new property implementation.
@@ -66,13 +64,15 @@ public:
case AnimatedNumberOptionalNumber:
case AnimatedLength:
case AnimatedLengthList:
- case AnimatedRect:
case AnimatedPoints:
case AnimatedPreserveAspectRatio:
+ case AnimatedRect:
+ case AnimatedString:
return adoptPtr(new SVGAnimatedNewPropertyAnimator(attributeType, animationElement, contextElement));
- // SVGAnimatedPoint does not exist.
+ // SVGAnimatedPoint/SVGAnimatedStringList does not exist.
case AnimatedPoint:
+ case AnimatedStringList:
ASSERT_NOT_REACHED();
case AnimatedUnknown:
« no previous file with comments | « Source/core/svg/SVGAnimationElement.cpp ('k') | Source/core/svg/SVGCursorElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698