| Index: chrome/browser/ui/views/profiles/profile_chooser_view.cc
|
| diff --git a/chrome/browser/ui/views/profiles/profile_chooser_view.cc b/chrome/browser/ui/views/profiles/profile_chooser_view.cc
|
| index f800d2d2cc5292d4d1e988c1f2cc4dab36c7bdff..e40d8a3a16bb1b44d931f195e148a3908a2c6d39 100644
|
| --- a/chrome/browser/ui/views/profiles/profile_chooser_view.cc
|
| +++ b/chrome/browser/ui/views/profiles/profile_chooser_view.cc
|
| @@ -857,7 +857,8 @@ void ProfileChooserView::WindowClosing() {
|
|
|
| if (tutorial_mode_ == profiles::TUTORIAL_MODE_CONFIRM_SIGNIN) {
|
| LoginUIServiceFactory::GetForProfile(browser_->profile())->
|
| - SyncConfirmationUIClosed(LoginUIService::SYNC_WITH_DEFAULT_SETTINGS);
|
| + SyncConfirmationUIClosed(LoginUIService::SYNC_WITH_DEFAULT_SETTINGS,
|
| + false);
|
| }
|
| }
|
|
|
| @@ -905,7 +906,8 @@ void ProfileChooserView::ButtonPressed(views::Button* sender,
|
| ShowViewFromMode(profiles::BUBBLE_VIEW_MODE_GAIA_REAUTH);
|
| } else if (sender == tutorial_sync_settings_ok_button_) {
|
| LoginUIServiceFactory::GetForProfile(browser_->profile())->
|
| - SyncConfirmationUIClosed(LoginUIService::SYNC_WITH_DEFAULT_SETTINGS);
|
| + SyncConfirmationUIClosed(LoginUIService::SYNC_WITH_DEFAULT_SETTINGS,
|
| + false);
|
| DismissTutorial();
|
| ProfileMetrics::LogProfileNewAvatarMenuSignin(
|
| ProfileMetrics::PROFILE_AVATAR_MENU_SIGNIN_OK);
|
| @@ -1006,7 +1008,7 @@ void ProfileChooserView::LinkClicked(views::Link* sender, int event_flags) {
|
| PostActionPerformed(ProfileMetrics::PROFILE_DESKTOP_MENU_ADD_ACCT);
|
| } else if (sender == tutorial_sync_settings_link_) {
|
| LoginUIServiceFactory::GetForProfile(browser_->profile())->
|
| - SyncConfirmationUIClosed(LoginUIService::CONFIGURE_SYNC_FIRST);
|
| + SyncConfirmationUIClosed(LoginUIService::CONFIGURE_SYNC_FIRST, false);
|
| tutorial_mode_ = profiles::TUTORIAL_MODE_NONE;
|
| ProfileMetrics::LogProfileNewAvatarMenuSignin(
|
| ProfileMetrics::PROFILE_AVATAR_MENU_SIGNIN_SETTINGS);
|
|
|