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

Unified Diff: net/spdy/hpack_huffman_aggregator.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 | « net/server/http_server_unittest.cc ('k') | net/spdy/spdy_http_utils.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/hpack_huffman_aggregator.cc
diff --git a/net/spdy/hpack_huffman_aggregator.cc b/net/spdy/hpack_huffman_aggregator.cc
index a54f5cd5b6b963a659a10ccd3d1eacf951448d1b..41a3f48afc1d5a7ebbb97c633b0178b6998d756b 100644
--- a/net/spdy/hpack_huffman_aggregator.cc
+++ b/net/spdy/hpack_huffman_aggregator.cc
@@ -94,7 +94,7 @@ void HpackHuffmanAggregator::CreateSpdyHeadersFromHttpResponse(
std::string name, value;
void* it = NULL;
while (headers.EnumerateHeaderLines(&it, &name, &value)) {
- StringToLowerASCII(&name);
+ base::StringToLowerASCII(&name);
if (headers_out->find(name) == headers_out->end()) {
(*headers_out)[name] = value;
} else {
« no previous file with comments | « net/server/http_server_unittest.cc ('k') | net/spdy/spdy_http_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698