Index: net/http/http_auth.cc |
diff --git a/net/http/http_auth.cc b/net/http/http_auth.cc |
index 4c6d3e8dda309e7d29484a16e413767dfa8cb201..bc04e094939fab93c4eed797b42ecbc12b6e302b 100644 |
--- a/net/http/http_auth.cc |
+++ b/net/http/http_auth.cc |
@@ -76,7 +76,8 @@ HttpAuth::AuthorizationResult HttpAuth::HandleChallengeResponse( |
HttpAuth::AUTHORIZATION_RESULT_INVALID; |
while (headers->EnumerateHeader(&iter, header_name, &challenge)) { |
HttpAuthChallengeTokenizer props(challenge.begin(), challenge.end()); |
- if (!LowerCaseEqualsASCII(props.scheme(), current_scheme_name.c_str())) |
+ if (!base::LowerCaseEqualsASCII(props.scheme(), |
+ current_scheme_name.c_str())) |
continue; |
authorization_result = handler->HandleAnotherChallenge(&props); |
if (authorization_result != HttpAuth::AUTHORIZATION_RESULT_INVALID) { |