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

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

Issue 1011983003: Drop SVGPathSegWithContext (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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/SVGPathSegCurvetoCubic.h ('k') | Source/core/svg/SVGPathSegCurvetoQuadratic.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 0890503507c0d5cd5d6284af03495ea2f17d9149..8077890fd6b6de5b7dbe3a2959a2931ec9762b8b 100644
--- a/Source/core/svg/SVGPathSegCurvetoCubicSmooth.h
+++ b/Source/core/svg/SVGPathSegCurvetoCubicSmooth.h
@@ -21,14 +21,14 @@
#ifndef SVGPathSegCurvetoCubicSmooth_h
#define SVGPathSegCurvetoCubicSmooth_h
-#include "core/svg/SVGPathSegWithContext.h"
+#include "core/svg/SVGPathSeg.h"
namespace blink {
-class SVGPathSegCurvetoCubicSmooth : public SVGPathSegWithContext {
+class SVGPathSegCurvetoCubicSmooth : public SVGPathSeg {
public:
SVGPathSegCurvetoCubicSmooth(SVGPathElement* element, float x, float y, float x2, float y2)
- : SVGPathSegWithContext(element)
+ : SVGPathSeg(element)
, m_x(x)
, m_y(y)
, m_x2(x2)
« no previous file with comments | « Source/core/svg/SVGPathSegCurvetoCubic.h ('k') | Source/core/svg/SVGPathSegCurvetoQuadratic.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698