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

Unified Diff: Source/core/svg/SVGPathSeg.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/SVGNumberTearOff.cpp ('k') | Source/core/svg/SVGPathSegList.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGPathSeg.h
diff --git a/Source/core/svg/SVGPathSeg.h b/Source/core/svg/SVGPathSeg.h
index 92f31752ae6854ea64f9e82a2272720a410215fc..95d9b04f0bcb89b91537573ee2e845fadd61caca 100644
--- a/Source/core/svg/SVGPathSeg.h
+++ b/Source/core/svg/SVGPathSeg.h
@@ -64,7 +64,7 @@ enum SVGPathSegRole {
PathSegUndefinedRole = 2
};
-class NewSVGPropertyBase;
+class SVGPropertyBase;
class SVGPathElement;
class SVGElement;
@@ -105,12 +105,12 @@ public:
virtual unsigned short pathSegType() const = 0;
virtual String pathSegTypeAsLetter() const = 0;
- NewSVGPropertyBase* ownerList() const
+ SVGPropertyBase* ownerList() const
{
return m_ownerList;
}
- void setOwnerList(NewSVGPropertyBase* ownerList)
+ void setOwnerList(SVGPropertyBase* ownerList)
{
// Previous owner list must be cleared before setting new owner list.
ASSERT((!ownerList && m_ownerList) || (ownerList && !m_ownerList));
@@ -128,7 +128,7 @@ protected:
private:
// FIXME: oilpan: These are kept as raw ptrs to break reference cycle. Should be Member in oilpan.
- NewSVGPropertyBase* m_ownerList;
+ SVGPropertyBase* m_ownerList;
SVGElement* m_contextElement;
};
« no previous file with comments | « Source/core/svg/SVGNumberTearOff.cpp ('k') | Source/core/svg/SVGPathSegList.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698