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

Unified Diff: third_party/WebKit/Source/core/layout/svg/SVGLayoutTreeAsText.cpp

Issue 2821633002: Remove WTF::String::DeprecatedUpper() (Closed)
Patch Set: Created 3 years, 8 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/layout/svg/SVGLayoutTreeAsText.cpp
diff --git a/third_party/WebKit/Source/core/layout/svg/SVGLayoutTreeAsText.cpp b/third_party/WebKit/Source/core/layout/svg/SVGLayoutTreeAsText.cpp
index 8ce53ffbbadfac3683130339d1def9ffd6d01fb1..b497c12b8a26e1c52061f1e2321ed9d1d8553fd4 100644
--- a/third_party/WebKit/Source/core/layout/svg/SVGLayoutTreeAsText.cpp
+++ b/third_party/WebKit/Source/core/layout/svg/SVGLayoutTreeAsText.cpp
@@ -239,7 +239,7 @@ static TextStream& operator<<(TextStream& ts, LineJoin style) {
}
static TextStream& operator<<(TextStream& ts, const SVGSpreadMethodType& type) {
- ts << SVGEnumerationToString<SVGSpreadMethodType>(type).DeprecatedUpper();
+ ts << SVGEnumerationToString<SVGSpreadMethodType>(type).UpperASCII();
return ts;
}

Powered by Google App Engine
This is Rietveld 408576698