| 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 2d58b5883b00f53281d5ec35ce2b7f6be5512420..1e62260bfc27a00a65defbca1d2851c6f9524251 100644
|
| --- a/chrome/browser/chromeos/login/login_browsertest.cc
|
| +++ b/chrome/browser/chromeos/login/login_browsertest.cc
|
| @@ -21,6 +21,7 @@
|
| #include "chrome/test/base/interactive_test_utils.h"
|
| #include "chrome/test/base/in_process_browser_test.h"
|
| #include "chrome/test/base/ui_test_utils.h"
|
| +#include "chromeos/chromeos_switches.h"
|
| #include "content/public/browser/notification_observer.h"
|
| #include "content/public/browser/notification_registrar.h"
|
| #include "content/public/browser/notification_service.h"
|
| @@ -74,7 +75,7 @@ class LoginUserTest : public LoginTestBase {
|
| virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
|
| command_line->AppendSwitchASCII(switches::kLoginUser, "TestUser@gmail.com");
|
| command_line->AppendSwitchASCII(switches::kLoginProfile, "user");
|
| - command_line->AppendSwitch(switches::kNoFirstRun);
|
| + command_line->AppendSwitch(::switches::kNoFirstRun);
|
| }
|
| };
|
|
|
| @@ -82,9 +83,9 @@ class LoginGuestTest : public LoginTestBase {
|
| protected:
|
| virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
|
| command_line->AppendSwitch(switches::kGuestSession);
|
| - command_line->AppendSwitch(switches::kIncognito);
|
| + command_line->AppendSwitch(::switches::kIncognito);
|
| command_line->AppendSwitchASCII(switches::kLoginProfile, "user");
|
| - command_line->AppendSwitch(switches::kNoFirstRun);
|
| + command_line->AppendSwitch(::switches::kNoFirstRun);
|
| }
|
| };
|
|
|
|
|