summaryrefslogtreecommitdiffstats
path: root/net/url_request/url_request_throttler_manager.cc
diff options
context:
space:
mode:
authorbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-08-07 16:55:42 +0000
committerbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-08-07 16:55:42 +0000
commitcb1f4ac35e1e687925fdf62f7f62140dcd6d4a1d (patch)
tree953168adbbb3a7ff1c069911b764ffbed2369384 /net/url_request/url_request_throttler_manager.cc
parentb7a95ad6f584b029954c3b398993f49f1d69265e (diff)
downloadchromium_src-cb1f4ac35e1e687925fdf62f7f62140dcd6d4a1d.zip
chromium_src-cb1f4ac35e1e687925fdf62f7f62140dcd6d4a1d.tar.gz
chromium_src-cb1f4ac35e1e687925fdf62f7f62140dcd6d4a1d.tar.bz2
Move StringToLowerASCII to base namespace
TBR=sky Review URL: https://codereview.chromium.org/448853002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@288085 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/url_request/url_request_throttler_manager.cc')
-rw-r--r--net/url_request/url_request_throttler_manager.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/url_request/url_request_throttler_manager.cc b/net/url_request/url_request_throttler_manager.cc
index e6dd658..8a62884 100644
--- a/net/url_request/url_request_throttler_manager.cc
+++ b/net/url_request/url_request_throttler_manager.cc
@@ -163,7 +163,7 @@ std::string URLRequestThrottlerManager::GetIdFromUrl(const GURL& url) const {
return url.possibly_invalid_spec();
GURL id = url.ReplaceComponents(url_id_replacements_);
- return StringToLowerASCII(id.spec()).c_str();
+ return base::StringToLowerASCII(id.spec()).c_str();
}
void URLRequestThrottlerManager::GarbageCollectEntriesIfNecessary() {