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

Unified Diff: Source/core/svg/SVGPathElement.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/core.gypi ('k') | Source/core/svg/SVGPathSegArc.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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"
« no previous file with comments | « Source/core/core.gypi ('k') | Source/core/svg/SVGPathSegArc.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698