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 |