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

Unified Diff: net/http/http_util.cc

Issue 7273081: Upstream android net related code (part 2) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removed the x-auto-login related code. Created 9 years, 5 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/http/http_response_headers_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/http_util.cc
diff --git a/net/http/http_util.cc b/net/http/http_util.cc
index b634cbf8081820290a99960d7f4bc6b931aa4612..e8cea2e3f9bddf2e866dbbc7480fcd6e29b9ec45 100644
--- a/net/http/http_util.cc
+++ b/net/http/http_util.cc
@@ -651,7 +651,7 @@ bool HttpUtil::HeadersIterator::GetNext() {
name_begin_ = lines_.token_begin();
values_end_ = lines_.token_end();
- string::const_iterator colon = find(name_begin_, values_end_, ':');
+ string::const_iterator colon = std::find(name_begin_, values_end_, ':');
if (colon == values_end_)
continue; // skip malformed header
« no previous file with comments | « net/http/http_response_headers_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698