| Index: chrome/browser/ui/app_list/app_list_service_interactive_uitest.cc
|
| diff --git a/chrome/browser/ui/app_list/app_list_service_interactive_uitest.cc b/chrome/browser/ui/app_list/app_list_service_interactive_uitest.cc
|
| index 2dc50e06ac853f076a6f6b9c9dd85101c85e1137..f8690d71d2cfab2defa6a590b125ddb1b68890ef 100644
|
| --- a/chrome/browser/ui/app_list/app_list_service_interactive_uitest.cc
|
| +++ b/chrome/browser/ui/app_list/app_list_service_interactive_uitest.cc
|
| @@ -145,7 +145,7 @@ class ShowAppListInteractiveTest : public InProcessBrowserTest {
|
| public:
|
| ShowAppListInteractiveTest() {}
|
|
|
| - void SetUpCommandLine(CommandLine* command_line) override {
|
| + void SetUpCommandLine(base::CommandLine* command_line) override {
|
| command_line->AppendSwitch(switches::kShowAppList);
|
| }
|
|
|
| @@ -178,7 +178,7 @@ IN_PROC_BROWSER_TEST_F(ShowAppListInteractiveTest, MAYBE_ShowAppListFlag) {
|
| // With Chrome still running, test receiving a second --show-app-list request
|
| // via the process singleton. ChromeOS has no process singleton so exclude it.
|
| #if !defined(OS_CHROMEOS)
|
| - CommandLine command_line(CommandLine::NO_PROGRAM);
|
| + base::CommandLine command_line(base::CommandLine::NO_PROGRAM);
|
| command_line.AppendSwitch(switches::kShowAppList);
|
| StartupBrowserCreator::ProcessCommandLineAlreadyRunning(
|
| command_line, base::FilePath(), profile->GetPath());
|
|
|