summaryrefslogtreecommitdiffstats
path: root/WebCore/svg/SVGPathBuilder.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/svg/SVGPathBuilder.h')
-rw-r--r--WebCore/svg/SVGPathBuilder.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/WebCore/svg/SVGPathBuilder.h b/WebCore/svg/SVGPathBuilder.h
index 3a1088d..38eabd4 100644
--- a/WebCore/svg/SVGPathBuilder.h
+++ b/WebCore/svg/SVGPathBuilder.h
@@ -36,6 +36,8 @@ public:
SVGPathBuilder();
void setCurrentPath(Path* path) { m_path = path; }
+ virtual void incrementPathSegmentCount() { }
+ virtual bool continueConsuming() { return true; }
virtual void cleanup() { m_path = 0; }
private: