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

Unified Diff: Source/core/svg/SVGAnimatedType.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/SVGAnimatedPointList.cpp ('k') | Source/core/svg/SVGAnimatedType.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGAnimatedType.h
diff --git a/Source/core/svg/SVGAnimatedType.h b/Source/core/svg/SVGAnimatedType.h
index c358b89b42b74b70f85fcf531f7cdfa894be4891..f66bf4e81035084b4b9a9783aa72e21498e494ec 100644
--- a/Source/core/svg/SVGAnimatedType.h
+++ b/Source/core/svg/SVGAnimatedType.h
@@ -24,7 +24,6 @@
#include "core/svg/SVGAngle.h"
#include "core/svg/SVGColor.h"
#include "core/svg/SVGNumberList.h"
-#include "core/svg/SVGPointList.h"
#include "core/svg/SVGPreserveAspectRatio.h"
#include "core/svg/SVGTransformList.h"
#include "core/svg/properties/NewSVGAnimatedProperty.h"
@@ -48,7 +47,6 @@ public:
static PassOwnPtr<SVGAnimatedType> createNumberList(SVGNumberList*);
static PassOwnPtr<SVGAnimatedType> createNumberOptionalNumber(std::pair<float, float>*);
static PassOwnPtr<SVGAnimatedType> createPath(PassOwnPtr<SVGPathByteStream>);
- static PassOwnPtr<SVGAnimatedType> createPointList(SVGPointList*);
static PassOwnPtr<SVGAnimatedType> createPreserveAspectRatio(SVGPreserveAspectRatio*);
static PassOwnPtr<SVGAnimatedType> createString(String*);
static PassOwnPtr<SVGAnimatedType> createTransformList(SVGTransformList*);
@@ -112,12 +110,6 @@ public:
return m_data.path;
}
- SVGPointList& pointList()
- {
- ASSERT(m_type == AnimatedPoints);
- return *m_data.pointList;
- }
-
SVGPreserveAspectRatio& preserveAspectRatio()
{
ASSERT(m_type == AnimatedPreserveAspectRatio);
@@ -165,7 +157,6 @@ private:
std::pair<float, float>* numberOptionalNumber;
SVGPathByteStream* path;
SVGPreserveAspectRatio* preserveAspectRatio;
- SVGPointList* pointList;
String* string;
SVGTransformList* transformList;
} m_data;
« no previous file with comments | « Source/core/svg/SVGAnimatedPointList.cpp ('k') | Source/core/svg/SVGAnimatedType.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698