| Index: chrome/browser/chromeos/login/users/wallpaper/wallpaper_manager_browsertest.cc
|
| diff --git a/chrome/browser/chromeos/login/users/wallpaper/wallpaper_manager_browsertest.cc b/chrome/browser/chromeos/login/users/wallpaper/wallpaper_manager_browsertest.cc
|
| index 147ca798addf2c29b221a0336a8d71e7855dfe3c..8c7adbb4e51aa68c4bef2d151a22d36878615057 100644
|
| --- a/chrome/browser/chromeos/login/users/wallpaper/wallpaper_manager_browsertest.cc
|
| +++ b/chrome/browser/chromeos/login/users/wallpaper/wallpaper_manager_browsertest.cc
|
| @@ -77,7 +77,7 @@ class WallpaperManagerBrowserTest : public InProcessBrowserTest {
|
| UpdateDisplay("800x600");
|
| }
|
|
|
| - virtual void SetUpCommandLine(CommandLine* command_line) override {
|
| + virtual void SetUpCommandLine(base::CommandLine* command_line) override {
|
| command_line->AppendSwitch(switches::kLoginManager);
|
| command_line->AppendSwitchASCII(switches::kLoginProfile, "user");
|
| }
|
| @@ -348,7 +348,7 @@ IN_PROC_BROWSER_TEST_F(WallpaperManagerBrowserTest,
|
| class WallpaperManagerBrowserTestNoAnimation
|
| : public WallpaperManagerBrowserTest {
|
| public:
|
| - virtual void SetUpCommandLine(CommandLine* command_line) override {
|
| + virtual void SetUpCommandLine(base::CommandLine* command_line) override {
|
| command_line->AppendSwitch(switches::kLoginManager);
|
| command_line->AppendSwitchASCII(switches::kLoginProfile, "user");
|
| command_line->AppendSwitch(chromeos::switches::kDisableLoginAnimations);
|
| @@ -411,7 +411,7 @@ IN_PROC_BROWSER_TEST_F(WallpaperManagerBrowserTestNoAnimation,
|
| class WallpaperManagerBrowserTestCrashRestore
|
| : public WallpaperManagerBrowserTest {
|
| public:
|
| - virtual void SetUpCommandLine(CommandLine* command_line) override {
|
| + virtual void SetUpCommandLine(base::CommandLine* command_line) override {
|
| command_line->AppendSwitch(chromeos::switches::kDisableLoginAnimations);
|
| command_line->AppendSwitch(chromeos::switches::kDisableBootAnimation);
|
| command_line->AppendSwitchASCII(switches::kLoginUser, kTestUser1);
|
| @@ -441,7 +441,7 @@ IN_PROC_BROWSER_TEST_F(WallpaperManagerBrowserTestCrashRestore,
|
| class WallpaperManagerBrowserTestCacheUpdate
|
| : public WallpaperManagerBrowserTest {
|
| public:
|
| - virtual void SetUpCommandLine(CommandLine* command_line) override {
|
| + virtual void SetUpCommandLine(base::CommandLine* command_line) override {
|
| command_line->AppendSwitchASCII(switches::kLoginUser, kTestUser1);
|
| command_line->AppendSwitchASCII(switches::kLoginProfile, "user");
|
| }
|
|
|