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

Unified Diff: net/server/http_server.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
« no previous file with comments | « net/proxy/proxy_bypass_rules.cc ('k') | net/server/http_server_request_info.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/server/http_server.cc
diff --git a/net/server/http_server.cc b/net/server/http_server.cc
index a3c4b5292650d49bd30d6c7153878e1412f02590..dff0e6096deafc409f8fd90ac54a01637d11bc75 100644
--- a/net/server/http_server.cc
+++ b/net/server/http_server.cc
@@ -412,7 +412,7 @@ bool HttpServer::ParseHeaders(const char* data,
buffer.clear();
break;
case ST_NAME:
- header_name = base::StringToLowerASCII(buffer);
+ header_name = base::ToLowerASCII(buffer);
buffer.clear();
break;
case ST_VALUE:
« no previous file with comments | « net/proxy/proxy_bypass_rules.cc ('k') | net/server/http_server_request_info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698