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

Unified Diff: Source/core/svg/SVGPathSegCurvetoCubicSmooth.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/SVGPathSegCurvetoCubicRel.h ('k') | Source/core/svg/SVGPathSegCurvetoCubicSmoothAbs.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGPathSegCurvetoCubicSmooth.h
diff --git a/Source/core/svg/SVGPathSegCurvetoCubicSmooth.h b/Source/core/svg/SVGPathSegCurvetoCubicSmooth.h
index 63a2f695d277cfeb9051def5f473c0c2c52303b5..0890503507c0d5cd5d6284af03495ea2f17d9149 100644
--- a/Source/core/svg/SVGPathSegCurvetoCubicSmooth.h
+++ b/Source/core/svg/SVGPathSegCurvetoCubicSmooth.h
@@ -27,8 +27,8 @@ namespace blink {
class SVGPathSegCurvetoCubicSmooth : public SVGPathSegWithContext {
public:
- SVGPathSegCurvetoCubicSmooth(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x2, float y2)
- : SVGPathSegWithContext(element, role)
+ SVGPathSegCurvetoCubicSmooth(SVGPathElement* element, float x, float y, float x2, float y2)
+ : SVGPathSegWithContext(element)
, m_x(x)
, m_y(y)
, m_x2(x2)
« no previous file with comments | « Source/core/svg/SVGPathSegCurvetoCubicRel.h ('k') | Source/core/svg/SVGPathSegCurvetoCubicSmoothAbs.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698