Index: net/http/http_request_headers.cc |
diff --git a/net/http/http_request_headers.cc b/net/http/http_request_headers.cc |
index eaeec0deacbbcc79f2bc31f6b51e452cd25a6fcc..ef434cde75ad0d57083d4df5d1416d5cbf33d45b 100644 |
--- a/net/http/http_request_headers.cc |
+++ b/net/http/http_request_headers.cc |
@@ -242,7 +242,7 @@ HttpRequestHeaders::FindHeader(const base::StringPiece& key) { |
for (HeaderVector::iterator it = headers_.begin(); |
it != headers_.end(); ++it) { |
if (key.length() == it->key.length() && |
- !base::strncasecmp(key.data(), it->key.data(), key.length())) |
+ !strncasecmp(key.data(), it->key.data(), key.length())) |
return it; |
} |
@@ -254,7 +254,7 @@ HttpRequestHeaders::FindHeader(const base::StringPiece& key) const { |
for (HeaderVector::const_iterator it = headers_.begin(); |
it != headers_.end(); ++it) { |
if (key.length() == it->key.length() && |
- !base::strncasecmp(key.data(), it->key.data(), key.length())) |
+ !strncasecmp(key.data(), it->key.data(), key.length())) |
return it; |
} |