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

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

Issue 1016023002: Move 'closePath' handling to the consumers (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: closePath() 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 2b3eb09824c25c71154ebb6ff36ffe513c5d5c63..059e476cdfb2728740e308a783e56a88a49820ec 100644
--- a/Source/core/svg/SVGPathByteStreamBuilder.h
+++ b/Source/core/svg/SVGPathByteStreamBuilder.h
@@ -37,7 +37,7 @@ private:
virtual bool continueConsuming() override { return true; }
// Used in UnalteredParsing/NormalizedParsing modes.
- virtual void moveTo(const FloatPoint&, bool closed, PathCoordinateMode) override;
+ 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;
« 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