| Index: chrome/browser/profiles/avatar_menu_model.cc
|
| diff --git a/chrome/browser/profiles/avatar_menu_model.cc b/chrome/browser/profiles/avatar_menu_model.cc
|
| index a7e535b10b11e4c6650b95cda46de75b90471dab..4ee39d33f62042620974a620893fd9bc1ca12ede 100644
|
| --- a/chrome/browser/profiles/avatar_menu_model.cc
|
| +++ b/chrome/browser/profiles/avatar_menu_model.cc
|
| @@ -16,6 +16,7 @@
|
| #include "chrome/browser/profiles/profile_info_cache.h"
|
| #include "chrome/browser/profiles/profile_info_util.h"
|
| #include "chrome/browser/profiles/profile_manager.h"
|
| +#include "chrome/browser/profiles/profile_manager_util.h"
|
| #include "chrome/browser/profiles/profile_metrics.h"
|
| #include "chrome/browser/ui/browser.h"
|
| #include "chrome/browser/ui/browser_list.h"
|
| @@ -51,7 +52,7 @@ void OnProfileCreated(bool always_create,
|
| DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
|
|
|
| if (status == Profile::CREATE_STATUS_INITIALIZED) {
|
| - ProfileManager::FindOrCreateNewWindowForProfile(
|
| + profiles::FindOrCreateNewWindowForProfile(
|
| profile,
|
| chrome::startup::IS_NOT_PROCESS_STARTUP,
|
| chrome::startup::IS_NOT_FIRST_RUN,
|
| @@ -140,7 +141,7 @@ AvatarMenuModel::Item::~Item() {
|
| }
|
|
|
| void AvatarMenuModel::SwitchToProfile(size_t index, bool always_create) {
|
| - DCHECK(ProfileManager::IsMultipleProfilesEnabled() ||
|
| + DCHECK(profiles::IsMultipleProfilesEnabled() ||
|
| index == GetActiveProfileIndex());
|
| const Item& item = GetItemAt(index);
|
| base::FilePath path =
|
| @@ -269,10 +270,10 @@ bool AvatarMenuModel::ShouldShowAvatarMenu() {
|
| if (base::FieldTrialList::FindFullName(kShowProfileSwitcherFieldTrialName) ==
|
| kAlwaysShowSwitcherGroupName) {
|
| // We should only be in this group when multi-profiles is enabled.
|
| - DCHECK(ProfileManager::IsMultipleProfilesEnabled());
|
| + DCHECK(profiles::IsMultipleProfilesEnabled());
|
| return true;
|
| }
|
| - return ProfileManager::IsMultipleProfilesEnabled() &&
|
| + return profiles::IsMultipleProfilesEnabled() &&
|
| g_browser_process->profile_manager() &&
|
| g_browser_process->profile_manager()->GetNumberOfProfiles() > 1;
|
| }
|
|
|