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

Unified Diff: chromeos/cryptohome/system_salt_getter.cc

Issue 1279123004: Replace ToLower calls to the new format (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 | « chrome/test/chromedriver/server/http_handler.cc ('k') | chromeos/login/auth/key.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/cryptohome/system_salt_getter.cc
diff --git a/chromeos/cryptohome/system_salt_getter.cc b/chromeos/cryptohome/system_salt_getter.cc
index 9c2e2449eb8327ae492be634d11fa98a57ae1a6b..b0bbc9e9b8261c833cf5ce73dc469314de721f34 100644
--- a/chromeos/cryptohome/system_salt_getter.cc
+++ b/chromeos/cryptohome/system_salt_getter.cc
@@ -95,8 +95,8 @@ SystemSaltGetter* SystemSaltGetter::Get() {
// static
std::string SystemSaltGetter::ConvertRawSaltToHexString(
const std::vector<uint8>& salt) {
- return base::StringToLowerASCII(base::HexEncode(
- reinterpret_cast<const void*>(salt.data()), salt.size()));
+ return base::ToLowerASCII(
+ base::HexEncode(reinterpret_cast<const void*>(salt.data()), salt.size()));
}
} // namespace chromeos
« no previous file with comments | « chrome/test/chromedriver/server/http_handler.cc ('k') | chromeos/login/auth/key.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698