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

Unified Diff: content/browser/cache_storage/cache_storage.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
Index: content/browser/cache_storage/cache_storage.cc
diff --git a/content/browser/cache_storage/cache_storage.cc b/content/browser/cache_storage/cache_storage.cc
index 71d2c352b983168a5181b3381fc987f01ea41c2b..f511164c6905e416e5ce97e0074a3f437620da68 100644
--- a/content/browser/cache_storage/cache_storage.cc
+++ b/content/browser/cache_storage/cache_storage.cc
@@ -338,7 +338,7 @@ class CacheStorage::SimpleCacheLoader : public CacheStorage::CacheLoader {
static std::string HexedHash(const std::string& value) {
std::string value_hash = base::SHA1HashString(value);
- std::string valued_hexed_hash = base::StringToLowerASCII(
+ std::string valued_hexed_hash = base::ToLowerASCII(
base::HexEncode(value_hash.c_str(), value_hash.length()));
return valued_hexed_hash;
}
« no previous file with comments | « content/browser/accessibility/browser_accessibility_win.cc ('k') | content/browser/cache_storage/cache_storage_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698