| Index: chrome/browser/chromeos/policy/blocking_login_browsertest.cc
|
| diff --git a/chrome/browser/chromeos/policy/blocking_login_browsertest.cc b/chrome/browser/chromeos/policy/blocking_login_browsertest.cc
|
| index 7cae9215266c35b54a252a91eae35fbaff342a26..c0f75339262ed8589d869aeeed3337198fda646f 100644
|
| --- a/chrome/browser/chromeos/policy/blocking_login_browsertest.cc
|
| +++ b/chrome/browser/chromeos/policy/blocking_login_browsertest.cc
|
| @@ -87,7 +87,7 @@ class BlockingLoginTest
|
| public:
|
| BlockingLoginTest() : profile_added_(NULL) {}
|
|
|
| - 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());
|
| @@ -109,7 +109,7 @@ class BlockingLoginTest
|
| embedded_test_server()->GetURL("/device_management").spec());
|
| }
|
|
|
| - virtual void SetUpOnMainThread() OVERRIDE {
|
| + virtual void SetUpOnMainThread() override {
|
| fake_gaia_.Initialize();
|
|
|
| embedded_test_server()->RegisterRequestHandler(
|
| @@ -122,7 +122,7 @@ class BlockingLoginTest
|
| content::NotificationService::AllSources());
|
| }
|
|
|
| - virtual void TearDownOnMainThread() OVERRIDE {
|
| + virtual void TearDownOnMainThread() override {
|
| RunUntilIdle();
|
| EXPECT_TRUE(responses_.empty());
|
| STLDeleteElements(&responses_);
|
| @@ -131,7 +131,7 @@ class BlockingLoginTest
|
|
|
| virtual void Observe(int type,
|
| const content::NotificationSource& source,
|
| - const content::NotificationDetails& details) OVERRIDE {
|
| + const content::NotificationDetails& details) override {
|
| ASSERT_EQ(chrome::NOTIFICATION_PROFILE_ADDED, type);
|
| ASSERT_FALSE(profile_added_);
|
| profile_added_ = content::Source<Profile>(source).ptr();
|
|
|