| Index: net/http/http_auth.cc | 
| diff --git a/net/http/http_auth.cc b/net/http/http_auth.cc | 
| index 35251140f4763431900696d82d451dc5fc08bb9c..7752d743a22a356ea659577e858ad8aa3f2c017b 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) { | 
|  |