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

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

Issue 131253002: [SVG] SVGAnimatedBoolean migration to new SVG property impl. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase/address comments 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
Index: Source/core/svg/SVGAnimatorFactory.h
diff --git a/Source/core/svg/SVGAnimatorFactory.h b/Source/core/svg/SVGAnimatorFactory.h
index f7f70a7ec196a43ab07f6721ec5dce41f33046e0..47d556654ba8804cdeb30992d37cc1f20eec8ca8 100644
--- a/Source/core/svg/SVGAnimatorFactory.h
+++ b/Source/core/svg/SVGAnimatorFactory.h
@@ -53,8 +53,6 @@ public:
switch (attributeType) {
case AnimatedAngle:
return adoptPtr(new SVGAnimatedAngleAnimator(animationElement, contextElement));
- case AnimatedBoolean:
- return adoptPtr(new SVGAnimatedBooleanAnimator(animationElement, contextElement));
case AnimatedColor:
return adoptPtr(new SVGAnimatedColorAnimator(animationElement, contextElement));
case AnimatedEnumeration:
@@ -82,6 +80,7 @@ public:
case AnimatedTransformList:
return adoptPtr(new SVGAnimatedTransformListAnimator(animationElement, contextElement));
// Below properties have migrated to new property implementation.
+ case AnimatedBoolean:
case AnimatedLength:
case AnimatedLengthList:
return adoptPtr(new SVGAnimatedNewPropertyAnimator(attributeType, animationElement, contextElement));

Powered by Google App Engine
This is Rietveld 408576698