| Index: chrome/browser/profiles/profile_list_desktop_unittest.cc
|
| diff --git a/chrome/browser/profiles/profile_list_desktop_unittest.cc b/chrome/browser/profiles/profile_list_desktop_unittest.cc
|
| index b4e74a34611789649c78adf2e40dc2cdcfb15300..95f03c4dfc3e29088b28f6266b47206a568429aa 100644
|
| --- a/chrome/browser/profiles/profile_list_desktop_unittest.cc
|
| +++ b/chrome/browser/profiles/profile_list_desktop_unittest.cc
|
| @@ -285,7 +285,8 @@ TEST_F(ProfileListDesktopTest, ShowAvatarMenuInTrial) {
|
| }
|
|
|
| TEST_F(ProfileListDesktopTest, DontShowOldAvatarMenuForSingleProfile) {
|
| - switches::DisableNewAvatarMenuForTesting(CommandLine::ForCurrentProcess());
|
| + switches::DisableNewAvatarMenuForTesting(
|
| + base::CommandLine::ForCurrentProcess());
|
|
|
| manager()->CreateTestingProfile("Test 1");
|
|
|
| @@ -306,7 +307,8 @@ TEST_F(ProfileListDesktopTest, AlwaysShowNewAvatarMenu) {
|
| if (!profiles::IsMultipleProfilesEnabled())
|
| return;
|
|
|
| - switches::EnableNewAvatarMenuForTesting(CommandLine::ForCurrentProcess());
|
| + switches::EnableNewAvatarMenuForTesting(
|
| + base::CommandLine::ForCurrentProcess());
|
|
|
| manager()->CreateTestingProfile("Test 1");
|
|
|
|
|