| 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 29ec7e022e14e3822f4794231588c776aa63eb8b..3c8b610eae2016f26a689484a7ff7c6dde79e753 100644
|
| --- a/chrome/browser/ui/views/profiles/profile_chooser_view.cc
|
| +++ b/chrome/browser/ui/views/profiles/profile_chooser_view.cc
|
| @@ -430,7 +430,7 @@ bool ProfileChooserView::close_on_deactivate_for_testing_ = true;
|
| // static
|
| void ProfileChooserView::ShowBubble(
|
| profiles::BubbleViewMode view_mode,
|
| - signin::GAIAServiceType service_type,
|
| + const signin::ManageAccountsParams& manage_accounts_params,
|
| views::View* anchor_view,
|
| views::BubbleBorder::Arrow arrow,
|
| views::BubbleBorder::BubbleAlignment border_alignment,
|
| @@ -440,7 +440,7 @@ void ProfileChooserView::ShowBubble(
|
| return;
|
|
|
| profile_bubble_ = new ProfileChooserView(anchor_view, arrow, anchor_rect,
|
| - browser, view_mode, service_type);
|
| + browser, view_mode, manage_accounts_params.service_type);
|
| views::BubbleDelegateView::CreateBubble(profile_bubble_);
|
| profile_bubble_->set_close_on_deactivate(close_on_deactivate_for_testing_);
|
| profile_bubble_->SetAlignment(border_alignment);
|
|
|