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 e29200792cc45342dc0fc5f3d16bdb8a55fd5f2a..96e70e182a8f7a9518272c3bbe8884e617235f06 100644 |
--- a/third_party/WebKit/Source/core/svg/SVGPathUtilities.cpp |
+++ b/third_party/WebKit/Source/core/svg/SVGPathUtilities.cpp |
@@ -51,7 +51,7 @@ bool buildPathFromByteStream(const SVGPathByteStream& stream, Path& result) |
return parser.parsePathDataFromSource(NormalizedParsing); |
} |
-String buildStringFromByteStream(const SVGPathByteStream& stream, PathParsingMode parsingMode) |
+String buildStringFromByteStream(const SVGPathByteStream& stream) |
{ |
if (stream.isEmpty()) |
return String(); |
@@ -59,7 +59,7 @@ String buildStringFromByteStream(const SVGPathByteStream& stream, PathParsingMod |
SVGPathStringBuilder builder; |
SVGPathByteStreamSource source(stream); |
SVGPathParser parser(&source, &builder); |
- parser.parsePathDataFromSource(parsingMode); |
+ parser.parsePathDataFromSource(UnalteredParsing); |
return builder.result(); |
} |