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

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

Issue 1476283002: Drop PathParsingMode argument to buildStringFromByteStream (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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: third_party/WebKit/Source/core/svg/SVGPath.cpp
diff --git a/third_party/WebKit/Source/core/svg/SVGPath.cpp b/third_party/WebKit/Source/core/svg/SVGPath.cpp
index fb9eebe68dc67de4519482b7fa5039c51d2e854a..e239896ce6e7ae8145d48bded8a65b1701470a0c 100644
--- a/third_party/WebKit/Source/core/svg/SVGPath.cpp
+++ b/third_party/WebKit/Source/core/svg/SVGPath.cpp
@@ -122,7 +122,7 @@ const SVGPathByteStream& SVGPath::byteStream() const
String SVGPath::valueAsString() const
{
- return buildStringFromByteStream(byteStream(), UnalteredParsing);
+ return buildStringFromByteStream(byteStream());
davve 2015/11/27 09:45:57 Does this mean you may drop #include "core/svg/SVG
fs 2015/11/27 11:38:53 Yepp. Done.
}
void SVGPath::setValueAsString(const String& string, ExceptionState& exceptionState)

Powered by Google App Engine
This is Rietveld 408576698