Index: Source/core/svg/SVGPathElement.cpp |
diff --git a/Source/core/svg/SVGPathElement.cpp b/Source/core/svg/SVGPathElement.cpp |
index 5bec2eb91a96bc43e116c6f3278cefa535db9575..2d4c029a2ce508538a5dbed2396522879f4f2039 100644 |
--- a/Source/core/svg/SVGPathElement.cpp |
+++ b/Source/core/svg/SVGPathElement.cpp |
@@ -27,17 +27,26 @@ |
#include "core/rendering/svg/RenderSVGResource.h" |
#include "core/svg/SVGElementInstance.h" |
#include "core/svg/SVGMPathElement.h" |
-#include "core/svg/SVGPathSegArc.h" |
+#include "core/svg/SVGPathSegArcAbs.h" |
+#include "core/svg/SVGPathSegArcRel.h" |
#include "core/svg/SVGPathSegClosePath.h" |
-#include "core/svg/SVGPathSegCurvetoCubic.h" |
-#include "core/svg/SVGPathSegCurvetoCubicSmooth.h" |
-#include "core/svg/SVGPathSegCurvetoQuadratic.h" |
-#include "core/svg/SVGPathSegCurvetoQuadraticSmooth.h" |
-#include "core/svg/SVGPathSegLineto.h" |
-#include "core/svg/SVGPathSegLinetoHorizontal.h" |
-#include "core/svg/SVGPathSegLinetoVertical.h" |
+#include "core/svg/SVGPathSegCurvetoCubicAbs.h" |
+#include "core/svg/SVGPathSegCurvetoCubicRel.h" |
+#include "core/svg/SVGPathSegCurvetoCubicSmoothAbs.h" |
+#include "core/svg/SVGPathSegCurvetoCubicSmoothRel.h" |
+#include "core/svg/SVGPathSegCurvetoQuadraticAbs.h" |
+#include "core/svg/SVGPathSegCurvetoQuadraticRel.h" |
+#include "core/svg/SVGPathSegCurvetoQuadraticSmoothAbs.h" |
+#include "core/svg/SVGPathSegCurvetoQuadraticSmoothRel.h" |
+#include "core/svg/SVGPathSegLinetoAbs.h" |
+#include "core/svg/SVGPathSegLinetoHorizontalAbs.h" |
+#include "core/svg/SVGPathSegLinetoHorizontalRel.h" |
+#include "core/svg/SVGPathSegLinetoRel.h" |
+#include "core/svg/SVGPathSegLinetoVerticalAbs.h" |
+#include "core/svg/SVGPathSegLinetoVerticalRel.h" |
#include "core/svg/SVGPathSegList.h" |
-#include "core/svg/SVGPathSegMoveto.h" |
+#include "core/svg/SVGPathSegMovetoAbs.h" |
+#include "core/svg/SVGPathSegMovetoRel.h" |
#include "core/svg/SVGPathUtilities.h" |
#include "core/svg/properties/SVGPathSegListPropertyTearOff.h" |