Index: chrome/browser/ui/webui/sync_setup_handler.cc |
diff --git a/chrome/browser/ui/webui/sync_setup_handler.cc b/chrome/browser/ui/webui/sync_setup_handler.cc |
index dfc6dfe0c6e8d2861626ddb94dea95b1c7959791..73130d3ce21b6761c6ce573077a3409e55aed606 100644 |
--- a/chrome/browser/ui/webui/sync_setup_handler.cc |
+++ b/chrome/browser/ui/webui/sync_setup_handler.cc |
@@ -284,6 +284,8 @@ void SyncSetupHandler::GetStaticLocalizedValues( |
static OptionsStringResource resources[] = { |
{ "syncSetupConfigureTitle", IDS_SYNC_SETUP_CONFIGURE_TITLE }, |
+ { "syncSetupTimeoutTitle", IDS_SYNC_SETUP_TIME_OUT_TITLE }, |
+ { "syncSetupTimeoutContent", IDS_SYNC_SETUP_TIME_OUT_CONTENT }, |
{ "cannotBeBlank", IDS_SYNC_CANNOT_BE_BLANK }, |
{ "emailLabel", IDS_SYNC_LOGIN_EMAIL_NEW_LINE }, |
{ "passwordLabel", IDS_SYNC_LOGIN_PASSWORD_NEW_LINE }, |
@@ -536,6 +538,25 @@ void SyncSetupHandler::DisplaySpinner() { |
configuring_sync_ = true; |
StringValue page("spinner"); |
DictionaryValue args; |
+ |
+ const int kTimeoutSec = 30; |
+ backend_start_timer_.reset(new base::OneShotTimer<SyncSetupHandler>()); |
+ backend_start_timer_->Start(FROM_HERE, |
+ base::TimeDelta::FromSeconds(kTimeoutSec), |
+ this, &SyncSetupHandler::DisplayTimeout); |
+ web_ui()->CallJavascriptFunction( |
+ "SyncSetupOverlay.showSyncSetupPage", page, args); |
+} |
+ |
+// TODO(kochi): Handle error conditions other than timeout. |
+// http://crbug.com/128692 |
+void SyncSetupHandler::DisplayTimeout() { |
+ configuring_sync_ = false; |
Andrew T Wilson (Slow)
2012/06/20 05:23:42
I think CloseSyncSetup() clears the configuring_sy
peria
2012/06/20 09:20:17
Done.
|
+ // Stop setting up sync service |
+ CloseSyncSetup(); |
+ |
+ StringValue page("timeout"); |
+ DictionaryValue args; |
web_ui()->CallJavascriptFunction( |
"SyncSetupOverlay.showSyncSetupPage", page, args); |
} |
@@ -662,6 +683,9 @@ void SyncSetupHandler::GaiaCredentialsValid() { |
} |
void SyncSetupHandler::SigninFailed(const GoogleServiceAuthError& error) { |
+ // Stop a timer to handle timeout in waiting for checking network connection. |
+ backend_start_timer_.reset(); |
+ |
last_signin_error_ = error; |
// Got a failed signin - this is either just a typical auth error, or a |
// sync error (treat sync errors as "fatal errors" - i.e. non-auth errors). |
@@ -684,6 +708,9 @@ ProfileSyncService* SyncSetupHandler::GetSyncService() const { |
void SyncSetupHandler::SigninSuccess() { |
DCHECK(GetSyncService()->sync_initialized()); |
+ // Stop a timer to handle timeout in waiting for checking network connection. |
+ backend_start_timer_.reset(); |
+ |
// If we have signed in while sync is already setup, it must be due to some |
// kind of re-authentication flow. In that case, just close the signin dialog |
// rather than forcing the user to go through sync configuration. |
@@ -989,6 +1016,9 @@ LoginUIService* SyncSetupHandler::GetLoginUIService() const { |
} |
void SyncSetupHandler::CloseOverlay() { |
+ // Stop a timer to handle timeout in waiting for sync setup. |
+ backend_start_timer_.reset(); |
+ |
CloseSyncSetup(); |
web_ui()->CallJavascriptFunction("OptionsPage.closeOverlay"); |
} |