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

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

Issue 456763002: Get rid of SVGPathSegRole (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 4 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/SVGPathSegList.cpp ('k') | Source/core/svg/SVGPathSegListBuilder.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGPathSegListBuilder.h
diff --git a/Source/core/svg/SVGPathSegListBuilder.h b/Source/core/svg/SVGPathSegListBuilder.h
index 61edc5a56b5757b6124bf679351eee4e8c0b8b84..035e4a0e9bd6d9b7ce0faf91d5594eaa8e88aabd 100644
--- a/Source/core/svg/SVGPathSegListBuilder.h
+++ b/Source/core/svg/SVGPathSegListBuilder.h
@@ -38,7 +38,6 @@ public:
void setCurrentSVGPathElement(SVGPathElement* pathElement) { m_pathElement = pathElement; }
void setCurrentSVGPathSegList(PassRefPtr<SVGPathSegList> pathSegList) { m_pathSegList = pathSegList; }
- void setCurrentSVGPathSegRole(SVGPathSegRole pathSegRole) { m_pathSegRole = pathSegRole; }
private:
virtual void incrementPathSegmentCount() OVERRIDE { }
@@ -47,7 +46,6 @@ private:
{
m_pathElement = 0;
m_pathSegList = nullptr;
- m_pathSegRole = PathSegUndefinedRole;
}
// Used in UnalteredParsing/NormalizedParsing modes.
@@ -66,7 +64,6 @@ private:
SVGPathElement* m_pathElement;
RefPtr<SVGPathSegList> m_pathSegList;
- SVGPathSegRole m_pathSegRole;
};
} // namespace blink
« no previous file with comments | « Source/core/svg/SVGPathSegList.cpp ('k') | Source/core/svg/SVGPathSegListBuilder.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698