| Index: chrome/browser/chromeos/login/login_utils_browsertest.cc
|
| diff --git a/chrome/browser/chromeos/login/login_utils_browsertest.cc b/chrome/browser/chromeos/login/login_utils_browsertest.cc
|
| index 30c3cc9a64070a62c017c6badd35e79d90dd3f12..077e87e020fa85a59478f57fb7034566feef7505 100644
|
| --- a/chrome/browser/chromeos/login/login_utils_browsertest.cc
|
| +++ b/chrome/browser/chromeos/login/login_utils_browsertest.cc
|
| @@ -46,7 +46,7 @@ class LoginUtilsTest : public InProcessBrowserTest {
|
| public:
|
| LoginUtilsTest() {}
|
|
|
| - virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
|
| + virtual void SetUpCommandLine(CommandLine* command_line) override {
|
| // Initialize the test server early, so that we can use its base url for
|
| // the command line flags.
|
| ASSERT_TRUE(embedded_test_server()->InitializeAndWaitUntilReady());
|
| @@ -65,13 +65,13 @@ class LoginUtilsTest : public InProcessBrowserTest {
|
| embedded_test_server()->base_url().spec());
|
| }
|
|
|
| - virtual void SetUpOnMainThread() OVERRIDE {
|
| + virtual void SetUpOnMainThread() override {
|
| fake_gaia_.Initialize();
|
| embedded_test_server()->RegisterRequestHandler(
|
| base::Bind(&FakeGaia::HandleRequest, base::Unretained(&fake_gaia_)));
|
| }
|
|
|
| - virtual void TearDownOnMainThread() OVERRIDE {
|
| + virtual void TearDownOnMainThread() override {
|
| RunUntilIdle();
|
| EXPECT_TRUE(embedded_test_server()->ShutdownAndWaitUntilComplete());
|
| }
|
|
|