Index: trunk/src/net/http/http_auth_handler_mock.cc |
=================================================================== |
--- trunk/src/net/http/http_auth_handler_mock.cc (revision 289319) |
+++ trunk/src/net/http/http_auth_handler_mock.cc (working copy) |
@@ -83,7 +83,7 @@ |
// challenge for a non connection based scheme, assume it's a rejection. |
if (!is_connection_based() || challenge->base64_param().empty()) |
return HttpAuth::AUTHORIZATION_RESULT_REJECT; |
- if (!base::LowerCaseEqualsASCII(challenge->scheme(), "mock")) |
+ if (!LowerCaseEqualsASCII(challenge->scheme(), "mock")) |
return HttpAuth::AUTHORIZATION_RESULT_INVALID; |
return HttpAuth::AUTHORIZATION_RESULT_ACCEPT; |
} |