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

Unified Diff: third_party/WebKit/Source/platform/wtf/text/WTFString.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/platform/wtf/text/WTFString.cpp
diff --git a/third_party/WebKit/Source/platform/wtf/text/WTFString.cpp b/third_party/WebKit/Source/platform/wtf/text/WTFString.cpp
index 6950ae7393aa13986e196519d96182ebaf0f4665..e2b669370e0a3592f894de394de3de9a89680ce0 100644
--- a/third_party/WebKit/Source/platform/wtf/text/WTFString.cpp
+++ b/third_party/WebKit/Source/platform/wtf/text/WTFString.cpp
@@ -276,12 +276,6 @@ String String::DeprecatedLower() const {
return impl_->LowerUnicode();
}
-String String::DeprecatedUpper() const {
- if (!impl_)
- return String();
- return impl_->UpperUnicode();
-}
-
String String::LowerUnicode(const AtomicString& locale_identifier) const {
if (!impl_)
return String();
« no previous file with comments | « third_party/WebKit/Source/platform/wtf/text/WTFString.h ('k') | third_party/WebKit/Source/platform/wtf/text/WTFStringTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698