Index: third_party/WebKit/Source/core/svg/SVGPathUtilities.cpp |
diff --git a/third_party/WebKit/Source/core/svg/SVGPathUtilities.cpp b/third_party/WebKit/Source/core/svg/SVGPathUtilities.cpp |
index 04043bc4db9353958d46550c7ddc16f2d5b6cc35..d027c75888a245494858ddb60756c643953cad37 100644 |
--- a/third_party/WebKit/Source/core/svg/SVGPathUtilities.cpp |
+++ b/third_party/WebKit/Source/core/svg/SVGPathUtilities.cpp |
@@ -85,21 +85,6 @@ bool buildSVGPathByteStreamFromString(const String& d, SVGPathByteStream& result |
return ok; |
} |
-bool addToSVGPathByteStream(SVGPathByteStream& fromStream, const SVGPathByteStream& byStream, unsigned repeatCount) |
-{ |
- if (fromStream.isEmpty() || byStream.isEmpty()) |
- return true; |
- |
- OwnPtr<SVGPathByteStream> fromStreamCopy = fromStream.copy(); |
- fromStream.clear(); |
- |
- SVGPathByteStreamBuilder builder(fromStream); |
- SVGPathByteStreamSource fromSource(*fromStreamCopy); |
- SVGPathByteStreamSource bySource(byStream); |
- SVGPathBlender blender(&fromSource, &bySource, &builder); |
- return blender.addAnimatedPath(repeatCount); |
-} |
- |
unsigned getSVGPathSegAtLengthFromSVGPathByteStream(const SVGPathByteStream& stream, float length) |
{ |
if (stream.isEmpty()) |