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

Unified Diff: ui/app_list/folder_image_unittest.cc

Issue 819943002: Standardize usage of virtual/override/final specifiers in ui/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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 | « no previous file | ui/gfx/animation/animation.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/app_list/folder_image_unittest.cc
diff --git a/ui/app_list/folder_image_unittest.cc b/ui/app_list/folder_image_unittest.cc
index 0d5945c93e470813ee4e51b0183260a04cbf6d1e..f9c97b0f4585d876f58b14b408c1631dd094f9b8 100644
--- a/ui/app_list/folder_image_unittest.cc
+++ b/ui/app_list/folder_image_unittest.cc
@@ -56,9 +56,9 @@ class FolderImageTest : public testing::Test {
public:
FolderImageTest() : folder_image_(app_list_model_.top_level_item_list()) {}
- ~FolderImageTest() {}
+ ~FolderImageTest() override {}
- void SetUp() {
+ void SetUp() override {
// Populate the AppListModel with three items (to test that the FolderImage
// correctly supports having fewer than four icons).
AddAppWithColoredIcon("app1", SK_ColorRED);
@@ -69,7 +69,7 @@ class FolderImageTest : public testing::Test {
folder_image_.AddObserver(&observer_);
}
- void TearDown() { folder_image_.RemoveObserver(&observer_); }
+ void TearDown() override { folder_image_.RemoveObserver(&observer_); }
protected:
void AddAppWithColoredIcon(const std::string& id, SkColor icon_color) {
« no previous file with comments | « no previous file | ui/gfx/animation/animation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698