| Index: net/http/http_auth_sspi_win.cc
|
| diff --git a/net/http/http_auth_sspi_win.cc b/net/http/http_auth_sspi_win.cc
|
| index 8a0e49fff112888f136129109c76ba487e00637a..66038d122d64b684131278dca7ecc40424ea15cd 100644
|
| --- a/net/http/http_auth_sspi_win.cc
|
| +++ b/net/http/http_auth_sspi_win.cc
|
| @@ -229,7 +229,8 @@ void HttpAuthSSPI::ResetSecurityContext() {
|
| HttpAuth::AuthorizationResult HttpAuthSSPI::ParseChallenge(
|
| HttpAuthChallengeTokenizer* tok) {
|
| // Verify the challenge's auth-scheme.
|
| - if (!LowerCaseEqualsASCII(tok->scheme(), StringToLowerASCII(scheme_).c_str()))
|
| + if (!LowerCaseEqualsASCII(tok->scheme(),
|
| + base::StringToLowerASCII(scheme_).c_str()))
|
| return HttpAuth::AUTHORIZATION_RESULT_INVALID;
|
|
|
| std::string encoded_auth_token = tok->base64_param();
|
|
|