Chromium Code Reviews| Index: chrome/browser/chromeos/login/google_authenticator.cc |
| diff --git a/chrome/browser/chromeos/login/google_authenticator.cc b/chrome/browser/chromeos/login/google_authenticator.cc |
| index 94361be00606337d575159a885ce81d3673b8be7..af093d9d6cc72fdfd7eac1cfd859f76d2d5ebf9d 100644 |
| --- a/chrome/browser/chromeos/login/google_authenticator.cc |
| +++ b/chrome/browser/chromeos/login/google_authenticator.cc |
| @@ -45,7 +45,7 @@ namespace chromeos { |
| const char GoogleAuthenticator::kLocalaccountFile[] = "localaccount"; |
| // static |
| -const int GoogleAuthenticator::kClientLoginTimeoutMs = 5000; |
| +const int GoogleAuthenticator::kClientLoginTimeoutMs = 15000; |
|
Nikita (slow)
2010/07/27 10:06:57
Isn't 15s too much since we always have an option
|
| // static |
| const int GoogleAuthenticator::kLocalaccountRetryIntervalMs = 20; |
| @@ -64,7 +64,7 @@ GoogleAuthenticator::~GoogleAuthenticator() {} |
| void GoogleAuthenticator::CancelClientLogin() { |
| if (gaia_authenticator_->HasPendingFetch()) { |
| gaia_authenticator_->CancelRequest(); |
| - OnLoginFailure("Login has timed out; please try again!"); |
| + CheckOffline("Login has timed out; please try again!"); |
| } |
| } |