Index: net/http/http_auth_gssapi_posix.cc |
diff --git a/net/http/http_auth_gssapi_posix.cc b/net/http/http_auth_gssapi_posix.cc |
index a4b8c0cd839cc49bcf656d2ee5fb17b43193cbb6..d294a5ea72b21be10863fe91b5d7158e9db22ad4 100644 |
--- a/net/http/http_auth_gssapi_posix.cc |
+++ b/net/http/http_auth_gssapi_posix.cc |
@@ -687,7 +687,8 @@ void HttpAuthGSSAPI::Delegate() { |
HttpAuth::AuthorizationResult HttpAuthGSSAPI::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(); |