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

Unified Diff: content/browser/service_worker/service_worker_fetch_stores_manager.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
Index: content/browser/service_worker/service_worker_fetch_stores_manager.cc
diff --git a/content/browser/service_worker/service_worker_fetch_stores_manager.cc b/content/browser/service_worker/service_worker_fetch_stores_manager.cc
index 2fe44f21e5e25c22a386633581d80cd2f75780c1..88036af71bd3d0612cdac1bcd96b0f024063f814 100644
--- a/content/browser/service_worker/service_worker_fetch_stores_manager.cc
+++ b/content/browser/service_worker/service_worker_fetch_stores_manager.cc
@@ -22,7 +22,7 @@ namespace {
base::FilePath ConstructOriginPath(const base::FilePath& root_path,
const GURL& origin) {
std::string origin_hash = base::SHA1HashString(origin.spec());
- std::string origin_hash_hex = StringToLowerASCII(
+ std::string origin_hash_hex = base::StringToLowerASCII(
base::HexEncode(origin_hash.c_str(), origin_hash.length()));
return root_path.AppendASCII(origin_hash_hex);
}
« no previous file with comments | « content/browser/accessibility/browser_accessibility_win.cc ('k') | content/child/browser_font_resource_trusted.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698