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

Unified Diff: Source/core/svg/SVGPathByteStreamBuilder.h

Issue 1037463002: Rework the SVGPathConsumer interface (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase; FIXME -> TODO. Created 5 years, 9 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/SVGPathBuilder.cpp ('k') | Source/core/svg/SVGPathByteStreamBuilder.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGPathByteStreamBuilder.h
diff --git a/Source/core/svg/SVGPathByteStreamBuilder.h b/Source/core/svg/SVGPathByteStreamBuilder.h
index 059e476cdfb2728740e308a783e56a88a49820ec..4176d4f3b7dd7a22f92d080226341dad490a200a 100644
--- a/Source/core/svg/SVGPathByteStreamBuilder.h
+++ b/Source/core/svg/SVGPathByteStreamBuilder.h
@@ -20,14 +20,12 @@
#ifndef SVGPathByteStreamBuilder_h
#define SVGPathByteStreamBuilder_h
-#include "core/svg/SVGPathByteStream.h"
#include "core/svg/SVGPathConsumer.h"
-#include "platform/geometry/FloatPoint.h"
-#include "wtf/PassOwnPtr.h"
-#include "wtf/text/WTFString.h"
namespace blink {
+class SVGPathByteStream;
+
class SVGPathByteStreamBuilder final : public SVGPathConsumer {
public:
SVGPathByteStreamBuilder(SVGPathByteStream&);
@@ -36,19 +34,7 @@ private:
virtual void incrementPathSegmentCount() override { }
virtual bool continueConsuming() override { return true; }
- // Used in UnalteredParsing/NormalizedParsing modes.
- virtual void moveTo(const FloatPoint&, PathCoordinateMode) override;
- virtual void lineTo(const FloatPoint&, PathCoordinateMode) override;
- virtual void curveToCubic(const FloatPoint&, const FloatPoint&, const FloatPoint&, PathCoordinateMode) override;
- virtual void closePath() override;
-
- // Only used in UnalteredParsing mode.
- virtual void lineToHorizontal(float, PathCoordinateMode) override;
- virtual void lineToVertical(float, PathCoordinateMode) override;
- virtual void curveToCubicSmooth(const FloatPoint&, const FloatPoint&, PathCoordinateMode) override;
- virtual void curveToQuadratic(const FloatPoint&, const FloatPoint&, PathCoordinateMode) override;
- virtual void curveToQuadraticSmooth(const FloatPoint&, PathCoordinateMode) override;
- virtual void arcTo(float, float, float, bool largeArcFlag, bool sweepFlag, const FloatPoint&, PathCoordinateMode) override;
+ virtual void emitSegment(const PathSegmentData&) override;
SVGPathByteStream& m_byteStream;
};
« no previous file with comments | « Source/core/svg/SVGPathBuilder.cpp ('k') | Source/core/svg/SVGPathByteStreamBuilder.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698