| 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 54699018a9426d10fe730475ca3ec8d466996915..dac892169b9ed996729571fc19e3573ecb4ebb1e 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(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(CommandLine* command_line) override {
|
| command_line->AppendSwitch(chromeos::switches::kGuestSession);
|
| command_line->AppendSwitch(::switches::kIncognito);
|
| command_line->AppendSwitchASCII(chromeos::switches::kLoginProfile,
|
| @@ -54,19 +54,19 @@ class LoginGuestTest : public InProcessBrowserTest {
|
|
|
| class LoginCursorTest : public InProcessBrowserTest {
|
| protected:
|
| - virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
|
| + virtual void SetUpCommandLine(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(CommandLine* command_line) override {
|
| command_line->AppendSwitch(chromeos::switches::kLoginManager);
|
| command_line->AppendSwitch(chromeos::switches::kForceLoginManagerInTests);
|
| }
|
|
|
| - virtual void SetUpOnMainThread() OVERRIDE {
|
| + virtual void SetUpOnMainThread() override {
|
| ASSERT_TRUE(tracing::BeginTracingWithWatch(
|
| "ui", "ui", "ShowLoginWebUI", 1));
|
| }
|
|
|