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

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

Issue 208133002: [SVG] Remove "New" prefix from properties implementation. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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/SVGAnimatedTransformList.h ('k') | Source/core/svg/SVGAnimatedTypeAnimator.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGAnimatedTypeAnimator.h
diff --git a/Source/core/svg/SVGAnimatedTypeAnimator.h b/Source/core/svg/SVGAnimatedTypeAnimator.h
index b1fc0014723b4385570d031c826417acfce2c686..f455b7f8ad69a09921406af3aa19247e62708890 100644
--- a/Source/core/svg/SVGAnimatedTypeAnimator.h
+++ b/Source/core/svg/SVGAnimatedTypeAnimator.h
@@ -29,8 +29,8 @@
namespace WebCore {
-class NewSVGAnimatedPropertyBase;
-class NewSVGPropertyBase;
+class SVGAnimatedPropertyBase;
+class SVGPropertyBase;
class SVGElement;
class SVGAnimationElement;
@@ -43,17 +43,17 @@ public:
}
~SVGAnimatedTypeAnimator();
- PassRefPtr<NewSVGPropertyBase> constructFromString(const String&);
+ PassRefPtr<SVGPropertyBase> constructFromString(const String&);
- PassRefPtr<NewSVGPropertyBase> startAnimValAnimation(const Vector<SVGElement*>&);
+ PassRefPtr<SVGPropertyBase> startAnimValAnimation(const Vector<SVGElement*>&);
void stopAnimValAnimation(const Vector<SVGElement*>&);
- PassRefPtr<NewSVGPropertyBase> resetAnimValToBaseVal(const Vector<SVGElement*>&);
+ PassRefPtr<SVGPropertyBase> resetAnimValToBaseVal(const Vector<SVGElement*>&);
- void calculateAnimatedValue(float percentage, unsigned repeatCount, NewSVGPropertyBase*, NewSVGPropertyBase*, NewSVGPropertyBase*, NewSVGPropertyBase*);
+ void calculateAnimatedValue(float percentage, unsigned repeatCount, SVGPropertyBase*, SVGPropertyBase*, SVGPropertyBase*, SVGPropertyBase*);
float calculateDistance(const String& fromString, const String& toString);
- void calculateFromAndToValues(RefPtr<NewSVGPropertyBase>& from, RefPtr<NewSVGPropertyBase>& to, const String& fromString, const String& toString);
- void calculateFromAndByValues(RefPtr<NewSVGPropertyBase>& from, RefPtr<NewSVGPropertyBase>& to, const String& fromString, const String& byString);
+ void calculateFromAndToValues(RefPtr<SVGPropertyBase>& from, RefPtr<SVGPropertyBase>& to, const String& fromString, const String& toString);
+ void calculateFromAndByValues(RefPtr<SVGPropertyBase>& from, RefPtr<SVGPropertyBase>& to, const String& fromString, const String& byString);
void setContextElement(SVGElement* contextElement) { m_contextElement = contextElement; }
AnimatedPropertyType type() const { return m_type; }
@@ -62,8 +62,8 @@ private:
SVGAnimatedTypeAnimator(AnimatedPropertyType, SVGAnimationElement*, SVGElement*);
friend class ParsePropertyFromString;
- PassRefPtr<NewSVGPropertyBase> createPropertyForAnimation(const String&);
- PassRefPtr<NewSVGPropertyBase> resetAnimation(const Vector<SVGElement*>&);
+ PassRefPtr<SVGPropertyBase> createPropertyForAnimation(const String&);
+ PassRefPtr<SVGPropertyBase> resetAnimation(const Vector<SVGElement*>&);
bool isAnimatingSVGDom() const { return m_animatedProperty; }
bool isAnimatingCSSProperty() const { return !m_animatedProperty; }
@@ -71,7 +71,7 @@ private:
AnimatedPropertyType m_type;
SVGAnimationElement* m_animationElement;
SVGElement* m_contextElement;
- RefPtr<NewSVGAnimatedPropertyBase> m_animatedProperty;
+ RefPtr<SVGAnimatedPropertyBase> m_animatedProperty;
};
} // namespace WebCore
« no previous file with comments | « Source/core/svg/SVGAnimatedTransformList.h ('k') | Source/core/svg/SVGAnimatedTypeAnimator.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698