Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(304)

Unified Diff: ash/shelf/shelf_unittest.cc

Issue 684643002: Standardize usage of virtual/override/final specifiers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ash/shelf/shelf_tooltip_manager_unittest.cc ('k') | ash/shelf/shelf_view.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/shelf/shelf_unittest.cc
diff --git a/ash/shelf/shelf_unittest.cc b/ash/shelf/shelf_unittest.cc
index 7490f9858e613207007924cd16d79b3dcffb6966..87d6b1a07c15f50dde67addb5f74a9494a85ffe9 100644
--- a/ash/shelf/shelf_unittest.cc
+++ b/ash/shelf/shelf_unittest.cc
@@ -37,9 +37,9 @@ class ShelfTest : public ash::test::AshTestBase {
shelf_model_(NULL),
item_delegate_manager_(NULL) {}
- virtual ~ShelfTest() {}
+ ~ShelfTest() override {}
- virtual void SetUp() {
+ void SetUp() override {
test::AshTestBase::SetUp();
shelf_ = Shelf::ForPrimaryDisplay();
@@ -54,9 +54,7 @@ class ShelfTest : public ash::test::AshTestBase {
test_.reset(new ash::test::ShelfViewTestAPI(shelf_view_));
}
- virtual void TearDown() override {
- test::AshTestBase::TearDown();
- }
+ void TearDown() override { test::AshTestBase::TearDown(); }
Shelf* shelf() {
return shelf_;
« no previous file with comments | « ash/shelf/shelf_tooltip_manager_unittest.cc ('k') | ash/shelf/shelf_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698