| Index: chrome/browser/ui/views/profiles/profile_chooser_view_browsertest.cc
|
| diff --git a/chrome/browser/ui/views/profiles/profile_chooser_view_browsertest.cc b/chrome/browser/ui/views/profiles/profile_chooser_view_browsertest.cc
|
| index a4012e1663b6891a8ad62bf84247479e664562e0..4d72949b0013f45ad37857274a47b72e8449b1d5 100644
|
| --- a/chrome/browser/ui/views/profiles/profile_chooser_view_browsertest.cc
|
| +++ b/chrome/browser/ui/views/profiles/profile_chooser_view_browsertest.cc
|
| @@ -36,7 +36,7 @@ class ProfileChooserViewBrowserTest : public InProcessBrowserTest {
|
|
|
| protected:
|
| void SetUp() override;
|
| - void SetUpCommandLine(CommandLine* command_line) override;
|
| + void SetUpCommandLine(base::CommandLine* command_line) override;
|
| void OpenProfileChooserView();
|
|
|
| private:
|
| @@ -55,8 +55,9 @@ void ProfileChooserViewBrowserTest::SetUp() {
|
| }
|
|
|
| void ProfileChooserViewBrowserTest::SetUpCommandLine(
|
| - CommandLine* command_line) {
|
| - switches::EnableNewAvatarMenuForTesting(CommandLine::ForCurrentProcess());
|
| + base::CommandLine* command_line) {
|
| + switches::EnableNewAvatarMenuForTesting(
|
| + base::CommandLine::ForCurrentProcess());
|
| }
|
|
|
| void ProfileChooserViewBrowserTest::OpenProfileChooserView() {
|
|
|