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

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

Issue 132233016: [SVG] SVGAnimatedPointList migration to new SVG property impl. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: set NeedsRebaseline 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/SVGAnimatedType.cpp ('k') | Source/core/svg/SVGGeometryElement.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 642cd2ad93f24176eba02bdedef982f593d80a93..3ad03959821da91bb494930c89ccb26943cf72a9 100644
--- a/Source/core/svg/SVGAnimatorFactory.h
+++ b/Source/core/svg/SVGAnimatorFactory.h
@@ -21,19 +21,15 @@
#define SVGAnimatorFactory_h
#include "core/svg/SVGAnimatedAngle.h"
-#include "core/svg/SVGAnimatedBoolean.h"
#include "core/svg/SVGAnimatedColor.h"
#include "core/svg/SVGAnimatedEnumeration.h"
#include "core/svg/SVGAnimatedInteger.h"
#include "core/svg/SVGAnimatedIntegerOptionalInteger.h"
-#include "core/svg/SVGAnimatedLength.h"
-#include "core/svg/SVGAnimatedLengthList.h"
#include "core/svg/SVGAnimatedNewPropertyAnimator.h"
#include "core/svg/SVGAnimatedNumber.h"
#include "core/svg/SVGAnimatedNumberList.h"
#include "core/svg/SVGAnimatedNumberOptionalNumber.h"
#include "core/svg/SVGAnimatedPath.h"
-#include "core/svg/SVGAnimatedPointList.h"
#include "core/svg/SVGAnimatedPreserveAspectRatio.h"
#include "core/svg/SVGAnimatedRect.h"
#include "core/svg/SVGAnimatedString.h"
@@ -69,8 +65,6 @@ public:
return adoptPtr(new SVGAnimatedNumberOptionalNumberAnimator(animationElement, contextElement));
case AnimatedPath:
return adoptPtr(new SVGAnimatedPathAnimator(animationElement, contextElement));
- case AnimatedPoints:
- return adoptPtr(new SVGAnimatedPointListAnimator(animationElement, contextElement));
case AnimatedPreserveAspectRatio:
return adoptPtr(new SVGAnimatedPreserveAspectRatioAnimator(animationElement, contextElement));
case AnimatedString:
@@ -82,7 +76,13 @@ public:
case AnimatedLength:
case AnimatedLengthList:
case AnimatedRect:
+ case AnimatedPoints:
return adoptPtr(new SVGAnimatedNewPropertyAnimator(attributeType, animationElement, contextElement));
+
+ // SVGAnimatedPoint does not exist.
+ case AnimatedPoint:
+ ASSERT_NOT_REACHED();
+
case AnimatedUnknown:
break;
}
« no previous file with comments | « Source/core/svg/SVGAnimatedType.cpp ('k') | Source/core/svg/SVGGeometryElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698