Index: Source/core/svg/SVGPathSegCurvetoCubic.h |
diff --git a/Source/core/svg/SVGPathSegCurvetoCubic.h b/Source/core/svg/SVGPathSegCurvetoCubic.h |
index 2b28711e876b1709fb07eebd66ea7fc01a8e0bea..3f7da28f93d6494aad6c703d107c43ad97f943c6 100644 |
--- a/Source/core/svg/SVGPathSegCurvetoCubic.h |
+++ b/Source/core/svg/SVGPathSegCurvetoCubic.h |
@@ -21,14 +21,14 @@ |
#ifndef SVGPathSegCurvetoCubic_h |
#define SVGPathSegCurvetoCubic_h |
-#include "core/svg/SVGPathSegWithContext.h" |
+#include "core/svg/SVGPathSeg.h" |
namespace blink { |
-class SVGPathSegCurvetoCubic : public SVGPathSegWithContext { |
+class SVGPathSegCurvetoCubic : public SVGPathSeg { |
public: |
SVGPathSegCurvetoCubic(SVGPathElement* element, float x, float y, float x1, float y1, float x2, float y2) |
- : SVGPathSegWithContext(element) |
+ : SVGPathSeg(element) |
, m_x(x) |
, m_y(y) |
, m_x1(x1) |