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

Unified Diff: Source/core/svg/SVGPathSegCurvetoQuadratic.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
Index: Source/core/svg/SVGPathSegCurvetoQuadratic.h
diff --git a/Source/core/svg/SVGPathSegCurvetoQuadratic.h b/Source/core/svg/SVGPathSegCurvetoQuadratic.h
index 048cda4fe746104452ab7d752b7dde228acfb843..fac67b6409885e2bcc04af137c77ea6f5a114ec3 100644
--- a/Source/core/svg/SVGPathSegCurvetoQuadratic.h
+++ b/Source/core/svg/SVGPathSegCurvetoQuadratic.h
@@ -21,14 +21,14 @@
#ifndef SVGPathSegCurvetoQuadratic_h
#define SVGPathSegCurvetoQuadratic_h
-#include "core/svg/SVGPathSegWithContext.h"
+#include "core/svg/SVGPathSeg.h"
namespace blink {
-class SVGPathSegCurvetoQuadratic : public SVGPathSegWithContext {
+class SVGPathSegCurvetoQuadratic : public SVGPathSeg {
public:
SVGPathSegCurvetoQuadratic(SVGPathElement* element, float x, float y, float x1, float y1)
- : SVGPathSegWithContext(element)
+ : SVGPathSeg(element)
, m_x(x)
, m_y(y)
, m_x1(x1)
« no previous file with comments | « Source/core/svg/SVGPathSegCurvetoCubicSmooth.h ('k') | Source/core/svg/SVGPathSegCurvetoQuadraticSmoothAbs.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698