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

Unified Diff: Source/core/svg/SVGElement.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/SVGBoolean.cpp ('k') | Source/core/svg/SVGElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGElement.h
diff --git a/Source/core/svg/SVGElement.h b/Source/core/svg/SVGElement.h
index 05b7983aa3937f069a5df5dedf27608d711f61a4..34df3c8d23c82ed9d6ea9631bd2eb6b404d76dbe 100644
--- a/Source/core/svg/SVGElement.h
+++ b/Source/core/svg/SVGElement.h
@@ -36,7 +36,7 @@ namespace WebCore {
class AffineTransform;
class CSSCursorImageValue;
class Document;
-class NewSVGAnimatedPropertyBase;
+class SVGAnimatedPropertyBase;
class SubtreeLayoutScope;
class SVGCursorElement;
class SVGDocumentExtensions;
@@ -93,7 +93,7 @@ public:
virtual void svgAttributeChanged(const QualifiedName&);
- PassRefPtr<NewSVGAnimatedPropertyBase> propertyFromAttribute(const QualifiedName& attributeName);
+ PassRefPtr<SVGAnimatedPropertyBase> propertyFromAttribute(const QualifiedName& attributeName);
static AnimatedPropertyType animatedPropertyTypeForCSSAttribute(const QualifiedName& attributeName);
void sendSVGLoadEventIfPossible(bool sendParentLoadEvents = false);
@@ -143,7 +143,7 @@ public:
bool isContextElement() const { return m_isContextElement; }
void setContextElement() { m_isContextElement = true; }
- void addToPropertyMap(PassRefPtr<NewSVGAnimatedPropertyBase>);
+ void addToPropertyMap(PassRefPtr<SVGAnimatedPropertyBase>);
SVGAnimatedString* className() { return m_className.get(); }
@@ -203,7 +203,7 @@ private:
HashSet<SVGElement*> m_elementsWithRelativeLengths;
- typedef HashMap<QualifiedName, RefPtr<NewSVGAnimatedPropertyBase> > AttributeToPropertyMap;
+ typedef HashMap<QualifiedName, RefPtr<SVGAnimatedPropertyBase> > AttributeToPropertyMap;
AttributeToPropertyMap m_newAttributeToPropertyMap;
#if !ASSERT_DISABLED
« no previous file with comments | « Source/core/svg/SVGBoolean.cpp ('k') | Source/core/svg/SVGElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698