| Index: chrome/browser/ui/views/avatar_menu_button.cc
|
| diff --git a/chrome/browser/ui/views/avatar_menu_button.cc b/chrome/browser/ui/views/avatar_menu_button.cc
|
| index 323d2e1c94c228e02f45296b25731ea3fe394fcf..f1b749dcaa67fa4b8b6a7a2b53dab526686978c4 100644
|
| --- a/chrome/browser/ui/views/avatar_menu_button.cc
|
| +++ b/chrome/browser/ui/views/avatar_menu_button.cc
|
| @@ -10,8 +10,8 @@
|
| #include "chrome/browser/chrome_notification_types.h"
|
| #include "chrome/browser/profiles/avatar_menu_model.h"
|
| #include "chrome/browser/profiles/profile_info_util.h"
|
| -#include "chrome/browser/profiles/profile_manager.h"
|
| #include "chrome/browser/profiles/profile_metrics.h"
|
| +#include "chrome/browser/profiles/profiles_state.h"
|
| #include "chrome/browser/ui/browser.h"
|
| #include "chrome/browser/ui/views/avatar_menu_bubble_view.h"
|
| #include "chrome/browser/ui/views/frame/browser_view.h"
|
| @@ -96,7 +96,7 @@ void AvatarMenuButton::ShowAvatarBubble() {
|
| gfx::Point origin;
|
| views::View::ConvertPointToScreen(this, &origin);
|
| gfx::Rect bounds(origin, size());
|
| - if (ProfileManager::IsNewProfileManagementEnabled()) {
|
| + if (profiles::IsNewProfileManagementEnabled()) {
|
| ProfileChooserView::ShowBubble(
|
| this, views::BubbleBorder::TOP_LEFT,
|
| views::BubbleBorder::ALIGN_ARROW_TO_MID_ANCHOR, bounds, browser_);
|
|
|