| Index: chrome/browser/ui/webui/sync_promo_handler.cc
|
| diff --git a/chrome/browser/ui/webui/sync_promo_handler.cc b/chrome/browser/ui/webui/sync_promo_handler.cc
|
| index 38b8f8a25ebe32ee454723bf253f7b617bd7c07d..c2fb5689ecfafa0fcd87b0e252acccd1d541c37f 100644
|
| --- a/chrome/browser/ui/webui/sync_promo_handler.cc
|
| +++ b/chrome/browser/ui/webui/sync_promo_handler.cc
|
| @@ -179,12 +179,17 @@ void SyncPromoHandler::Observe(int type,
|
| }
|
| }
|
|
|
| -void SyncPromoHandler::ShowSetupUI() {
|
| +void SyncPromoHandler::StepWizardForShowSetupUI() {
|
| ProfileSyncService* service =
|
| Profile::FromWebUI(web_ui_)->GetProfileSyncService();
|
| service->get_wizard().Step(SyncSetupWizard::GetLoginState());
|
| }
|
|
|
| +void SyncPromoHandler::ShowSetupUI() {
|
| + // We don't need to do anything here; The UI for the sync promo is already
|
| + // displayed.
|
| +}
|
| +
|
| void SyncPromoHandler::HandleCloseSyncPromo(const base::ListValue* args) {
|
| CloseSyncSetup();
|
|
|
|
|