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) |