| Index: chrome/browser/chrome_browser_field_trials_desktop.cc
|
| diff --git a/chrome/browser/chrome_browser_field_trials_desktop.cc b/chrome/browser/chrome_browser_field_trials_desktop.cc
|
| index 282fb0b2659927204b35110c8a1d97a17e6d4985..fe3a87882dbc0b9982c23fa792ce01062392e13f 100644
|
| --- a/chrome/browser/chrome_browser_field_trials_desktop.cc
|
| +++ b/chrome/browser/chrome_browser_field_trials_desktop.cc
|
| @@ -17,7 +17,7 @@
|
| #include "chrome/browser/gpu/chrome_gpu_util.h"
|
| #include "chrome/browser/omnibox/omnibox_field_trial.h"
|
| #include "chrome/browser/prerender/prerender_field_trial.h"
|
| -#include "chrome/browser/profiles/profile_manager.h"
|
| +#include "chrome/browser/profiles/profile_manager_util.h"
|
| #include "chrome/browser/safe_browsing/safe_browsing_blocking_page.h"
|
| #include "chrome/browser/ui/sync/one_click_signin_helper.h"
|
| #include "chrome/common/chrome_switches.h"
|
| @@ -77,7 +77,7 @@ void DisableShowProfileSwitcherTrialIfNecessary() {
|
| avatar_menu_always_hidden = true;
|
| #endif
|
| base::FieldTrial* trial = base::FieldTrialList::Find("ShowProfileSwitcher");
|
| - if (trial && (!ProfileManager::IsMultipleProfilesEnabled() ||
|
| + if (trial && (!profiles::IsMultipleProfilesEnabled() ||
|
| avatar_menu_always_hidden)) {
|
| trial->Disable();
|
| }
|
|
|