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

Unified Diff: remoting/host/setup/daemon_controller_delegate_linux.cc

Issue 448853002: Move StringToLowerASCII to base namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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/host/setup/daemon_controller_delegate_linux.cc
diff --git a/remoting/host/setup/daemon_controller_delegate_linux.cc b/remoting/host/setup/daemon_controller_delegate_linux.cc
index 07aa2786523d892a6b7e2d4832530740d030d790..c483d7bbbe377d51604092ccba821969f0910576 100644
--- a/remoting/host/setup/daemon_controller_delegate_linux.cc
+++ b/remoting/host/setup/daemon_controller_delegate_linux.cc
@@ -53,7 +53,7 @@ std::string GetMd5(const std::string& value) {
base::MD5Update(&ctx, value);
base::MD5Digest digest;
base::MD5Final(&digest, &ctx);
- return StringToLowerASCII(base::HexEncode(digest.a, sizeof(digest.a)));
+ return base::StringToLowerASCII(base::HexEncode(digest.a, sizeof(digest.a)));
}
base::FilePath GetConfigPath() {
« 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