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

Unified Diff: third_party/WebKit/Source/core/svg/SVGPathBuilder.h

Issue 1605943002: Remove tracking of 'closed subpath' state from SVGPathBuilder (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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
Index: third_party/WebKit/Source/core/svg/SVGPathBuilder.h
diff --git a/third_party/WebKit/Source/core/svg/SVGPathBuilder.h b/third_party/WebKit/Source/core/svg/SVGPathBuilder.h
index 5f3cea9f4f08c54109a30aab9a8060f0630fa171..6cbe279fb5c1327aa4c667ce5fdce6158dad00c2 100644
--- a/third_party/WebKit/Source/core/svg/SVGPathBuilder.h
+++ b/third_party/WebKit/Source/core/svg/SVGPathBuilder.h
@@ -32,13 +32,12 @@ class Path;
class SVGPathBuilder final : public SVGPathConsumer {
public:
- SVGPathBuilder(Path& path) : m_path(path), m_closed(true) { }
+ SVGPathBuilder(Path& path) : m_path(path) { }
private:
void emitSegment(const PathSegmentData&) override;
Path& m_path;
- bool m_closed;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698