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

Unified Diff: Source/core/svg/SVGPathByteStreamSource.cpp

Issue 734053005: Remove globalSVGPath* from SVGPathUtilities.cpp (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 1 month 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: Source/core/svg/SVGPathByteStreamSource.cpp
diff --git a/Source/core/svg/SVGPathByteStreamSource.cpp b/Source/core/svg/SVGPathByteStreamSource.cpp
index 11a2df2c6e0a7a82c4372db01fc3dfb3de324c4c..98b99b8a01103a365466d1b1ac5261c1bc6a4221 100644
--- a/Source/core/svg/SVGPathByteStreamSource.cpp
+++ b/Source/core/svg/SVGPathByteStreamSource.cpp
@@ -18,18 +18,10 @@
*/
#include "config.h"
-
#include "core/svg/SVGPathByteStreamSource.h"
namespace blink {
-SVGPathByteStreamSource::SVGPathByteStreamSource(const SVGPathByteStream* stream)
-{
- ASSERT(stream);
- m_streamCurrent = stream->begin();
- m_streamEnd = stream->end();
-}
-
bool SVGPathByteStreamSource::hasMoreData() const
{
return m_streamCurrent < m_streamEnd;

Powered by Google App Engine
This is Rietveld 408576698