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

Unified Diff: third_party/WebKit/Source/core/svg/SVGPathParserTest.cpp

Issue 1630823004: [SVG] Remove PathParsingMode (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: cleanup 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/SVGPathParserTest.cpp
diff --git a/third_party/WebKit/Source/core/svg/SVGPathParserTest.cpp b/third_party/WebKit/Source/core/svg/SVGPathParserTest.cpp
index b81b52047a4c55c71c4187e995ce921cab9c5ead..8cfa4de2bfc2d72409068d5bcbf7b7cf56b118c8 100644
--- a/third_party/WebKit/Source/core/svg/SVGPathParserTest.cpp
+++ b/third_party/WebKit/Source/core/svg/SVGPathParserTest.cpp
@@ -18,7 +18,7 @@ bool parsePath(const char* input, String& output)
SVGPathStringSource source(inputString);
SVGPathStringBuilder builder;
SVGPathParser parser(&source, &builder);
- bool hadError = parser.parsePathDataFromSource(UnalteredParsing, true);
+ bool hadError = parser.parsePathDataFromSource();
output = builder.result();
// Coerce a null result to empty.
if (output.isNull())
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGPathParser.cpp ('k') | third_party/WebKit/Source/core/svg/SVGPathUtilities.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698