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

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

Issue 183143002: Remove SVGAnimatedType (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Missed one rename. Created 6 years, 10 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/core.gypi ('k') | Source/core/svg/SVGAnimateElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGAnimateElement.h
diff --git a/Source/core/svg/SVGAnimateElement.h b/Source/core/svg/SVGAnimateElement.h
index 04660ca9ddfe6a0df350d522dd5d291e7ba56ec4..8ffd9dc596256d6caf2c9fa095807c3a53ff6871 100644
--- a/Source/core/svg/SVGAnimateElement.h
+++ b/Source/core/svg/SVGAnimateElement.h
@@ -31,7 +31,6 @@
namespace WebCore {
class SVGAnimatedProperty;
-class SVGAnimatedType;
class SVGAnimatedTypeAnimator;
class SVGAnimateElement : public SVGAnimationElement {
@@ -67,10 +66,10 @@ private:
virtual bool hasValidAttributeType() OVERRIDE;
- OwnPtr<SVGAnimatedType> m_fromType;
- OwnPtr<SVGAnimatedType> m_toType;
- OwnPtr<SVGAnimatedType> m_toAtEndOfDurationType;
- OwnPtr<SVGAnimatedType> m_animatedType;
+ RefPtr<NewSVGPropertyBase> m_fromProperty;
+ RefPtr<NewSVGPropertyBase> m_toProperty;
+ RefPtr<NewSVGPropertyBase> m_toAtEndOfDurationProperty;
+ RefPtr<NewSVGPropertyBase> m_animatedProperty;
SVGElementAnimatedPropertyList m_animatedProperties;
OwnPtr<SVGAnimatedTypeAnimator> m_animator;
« no previous file with comments | « Source/core/core.gypi ('k') | Source/core/svg/SVGAnimateElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698