summaryrefslogtreecommitdiffstats
path: root/WebCore/svg/SVGPathConsumer.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/svg/SVGPathConsumer.h')
-rw-r--r--WebCore/svg/SVGPathConsumer.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/WebCore/svg/SVGPathConsumer.h b/WebCore/svg/SVGPathConsumer.h
index 629c1bf..b7c5e73 100644
--- a/WebCore/svg/SVGPathConsumer.h
+++ b/WebCore/svg/SVGPathConsumer.h
@@ -46,14 +46,12 @@ public:
virtual bool continueConsuming() = 0;
virtual void cleanup() = 0;
-public:
// Used in UnalteredParisng/NormalizedParsing modes.
virtual void moveTo(const FloatPoint&, bool closed, PathCoordinateMode) = 0;
virtual void lineTo(const FloatPoint&, PathCoordinateMode) = 0;
virtual void curveToCubic(const FloatPoint&, const FloatPoint&, const FloatPoint&, PathCoordinateMode) = 0;
virtual void closePath() = 0;
-public:
// Only used in UnalteredParsing mode.
virtual void lineToHorizontal(float, PathCoordinateMode) = 0;
virtual void lineToVertical(float, PathCoordinateMode) = 0;
@@ -63,7 +61,6 @@ public:
virtual void arcTo(float, float, float, bool largeArcFlag, bool sweepFlag, const FloatPoint&, PathCoordinateMode) = 0;
protected:
- SVGPathConsumer() { }
virtual ~SVGPathConsumer() { }
};