| Index: chrome/browser/chromeos/login/login_browsertest.cc
|
| diff --git a/chrome/browser/chromeos/login/login_browsertest.cc b/chrome/browser/chromeos/login/login_browsertest.cc
|
| index dac892169b9ed996729571fc19e3573ecb4ebb1e..c7ef01253f3251cf423ca877eadf64121dd22ef9 100644
|
| --- a/chrome/browser/chromeos/login/login_browsertest.cc
|
| +++ b/chrome/browser/chromeos/login/login_browsertest.cc
|
| @@ -32,7 +32,7 @@ namespace {
|
|
|
| class LoginUserTest : public InProcessBrowserTest {
|
| protected:
|
| - virtual void SetUpCommandLine(CommandLine* command_line) override {
|
| + virtual void SetUpCommandLine(base::CommandLine* command_line) override {
|
| command_line->AppendSwitchASCII(
|
| chromeos::switches::kLoginUser, "TestUser@gmail.com");
|
| command_line->AppendSwitchASCII(chromeos::switches::kLoginProfile,
|
| @@ -42,7 +42,7 @@ class LoginUserTest : public InProcessBrowserTest {
|
|
|
| class LoginGuestTest : public InProcessBrowserTest {
|
| protected:
|
| - virtual void SetUpCommandLine(CommandLine* command_line) override {
|
| + virtual void SetUpCommandLine(base::CommandLine* command_line) override {
|
| command_line->AppendSwitch(chromeos::switches::kGuestSession);
|
| command_line->AppendSwitch(::switches::kIncognito);
|
| command_line->AppendSwitchASCII(chromeos::switches::kLoginProfile,
|
| @@ -54,14 +54,14 @@ class LoginGuestTest : public InProcessBrowserTest {
|
|
|
| class LoginCursorTest : public InProcessBrowserTest {
|
| protected:
|
| - virtual void SetUpCommandLine(CommandLine* command_line) override {
|
| + virtual void SetUpCommandLine(base::CommandLine* command_line) override {
|
| command_line->AppendSwitch(chromeos::switches::kLoginManager);
|
| }
|
| };
|
|
|
| class LoginSigninTest : public InProcessBrowserTest {
|
| protected:
|
| - virtual void SetUpCommandLine(CommandLine* command_line) override {
|
| + virtual void SetUpCommandLine(base::CommandLine* command_line) override {
|
| command_line->AppendSwitch(chromeos::switches::kLoginManager);
|
| command_line->AppendSwitch(chromeos::switches::kForceLoginManagerInTests);
|
| }
|
|
|