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

Unified Diff: Source/core/svg/SVGPathSegListBuilder.cpp

Issue 18706003: Get rid of SVGPathSeg* special casing in the bindings generator (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 5 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/SVGPathSegLinetoVerticalRel.h ('k') | Source/core/svg/SVGPathSegMoveto.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGPathSegListBuilder.cpp
diff --git a/Source/core/svg/SVGPathSegListBuilder.cpp b/Source/core/svg/SVGPathSegListBuilder.cpp
index bb86a92f25d3ede08931d0e8adeeeed79713d54c..afc00b4a175c59d2f58e0833d639933bece58413 100644
--- a/Source/core/svg/SVGPathSegListBuilder.cpp
+++ b/Source/core/svg/SVGPathSegListBuilder.cpp
@@ -27,17 +27,26 @@
#include "core/dom/ExceptionCode.h"
#include "core/svg/SVGPathElement.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"
namespace WebCore {
« no previous file with comments | « Source/core/svg/SVGPathSegLinetoVerticalRel.h ('k') | Source/core/svg/SVGPathSegMoveto.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698