| Index: net/http/http_auth_handler.cc
|
| diff --git a/net/http/http_auth_handler.cc b/net/http/http_auth_handler.cc
|
| index d6e6a62aca3df30a9e6a303d5b0a9b8ab444190f..e653e99049bd0ecf43cb2e49998d3bebde74b6e5 100644
|
| --- a/net/http/http_auth_handler.cc
|
| +++ b/net/http/http_auth_handler.cc
|
| @@ -99,6 +99,14 @@ int HttpAuthHandler::GenerateAuthToken(const string16* username,
|
| return rv;
|
| }
|
|
|
| +bool HttpAuthHandler::NeedsIdentity() {
|
| + return true;
|
| +}
|
| +
|
| +bool HttpAuthHandler::AllowsDefaultCredentials() {
|
| + return false;
|
| +}
|
| +
|
| void HttpAuthHandler::OnGenerateAuthTokenComplete(int rv) {
|
| CompletionCallback* callback = original_callback_;
|
| FinishGenerateAuthToken();
|
|
|