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

Unified Diff: remoting/signaling/jid_util.cc

Issue 1282363003: Convert remaining StringToLowerASCII to ToLowerASCII (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 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
« no previous file with comments | « ppapi/proxy/file_chooser_resource.cc ('k') | sql/statement.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/signaling/jid_util.cc
diff --git a/remoting/signaling/jid_util.cc b/remoting/signaling/jid_util.cc
index ca0c9094cf40627c76cb72a080988d882a0f5064..08e525d750a6984670f823e9e0db4dd62c67924e 100644
--- a/remoting/signaling/jid_util.cc
+++ b/remoting/signaling/jid_util.cc
@@ -12,9 +12,9 @@ std::string NormalizeJid(const std::string& jid) {
std::string bare_jid;
std::string resource;
if (SplitJidResource(jid, &bare_jid, &resource)) {
- return base::StringToLowerASCII(bare_jid) + "/" + resource;
+ return base::ToLowerASCII(bare_jid) + "/" + resource;
}
- return base::StringToLowerASCII(bare_jid);
+ return base::ToLowerASCII(bare_jid);
}
bool SplitJidResource(const std::string& full_jid,
« no previous file with comments | « ppapi/proxy/file_chooser_resource.cc ('k') | sql/statement.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698