| Index: ash/system/chromeos/power/power_status_view_unittest.cc
|
| diff --git a/ash/system/chromeos/power/power_status_view_unittest.cc b/ash/system/chromeos/power/power_status_view_unittest.cc
|
| index 5cf433247165cb5325f37af3f7cbcd1de2546d7e..7c30cf06f4fad1be97052961a6645df3a3d71b03 100644
|
| --- a/ash/system/chromeos/power/power_status_view_unittest.cc
|
| +++ b/ash/system/chromeos/power/power_status_view_unittest.cc
|
| @@ -22,12 +22,12 @@ class PowerStatusViewTest : public test::AshTestBase {
|
| virtual ~PowerStatusViewTest() {}
|
|
|
| // Overridden from testing::Test:
|
| - virtual void SetUp() OVERRIDE {
|
| + virtual void SetUp() override {
|
| test::AshTestBase::SetUp();
|
| view_.reset(new PowerStatusView(GetViewType(), false));
|
| }
|
|
|
| - virtual void TearDown() OVERRIDE {
|
| + virtual void TearDown() override {
|
| view_.reset();
|
| test::AshTestBase::TearDown();
|
| }
|
| @@ -53,7 +53,7 @@ class PowerStatusDefaultViewTest : public PowerStatusViewTest {
|
| virtual ~PowerStatusDefaultViewTest() {}
|
|
|
| protected:
|
| - virtual PowerStatusView::ViewType GetViewType() OVERRIDE {
|
| + virtual PowerStatusView::ViewType GetViewType() override {
|
| return PowerStatusView::VIEW_DEFAULT;
|
| }
|
|
|
| @@ -79,7 +79,7 @@ class PowerStatusNotificationViewTest : public PowerStatusViewTest {
|
| virtual ~PowerStatusNotificationViewTest() {}
|
|
|
| protected:
|
| - virtual PowerStatusView::ViewType GetViewType() OVERRIDE {
|
| + virtual PowerStatusView::ViewType GetViewType() override {
|
| return PowerStatusView::VIEW_NOTIFICATION;
|
| }
|
|
|
|
|