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

Unified Diff: ash/system/tray/tray_empty.cc

Issue 685483004: 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/system/tray/tray_empty.h ('k') | ash/system/tray/tray_event_filter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/system/tray/tray_empty.cc
diff --git a/ash/system/tray/tray_empty.cc b/ash/system/tray/tray_empty.cc
index 04ca207a9fafb9140de03815c15ca36628e31f2b..821632233af35a6562ddaa3aabad9b63d40bb2da 100644
--- a/ash/system/tray/tray_empty.cc
+++ b/ash/system/tray/tray_empty.cc
@@ -14,11 +14,10 @@ namespace {
class EmptyBackground : public views::Background {
public:
EmptyBackground() {}
- virtual ~EmptyBackground() {}
+ ~EmptyBackground() override {}
private:
- virtual void Paint(gfx::Canvas* canvas, views::View* view) const override {
- }
+ void Paint(gfx::Canvas* canvas, views::View* view) const override {}
DISALLOW_COPY_AND_ASSIGN(EmptyBackground);
};
« no previous file with comments | « ash/system/tray/tray_empty.h ('k') | ash/system/tray/tray_event_filter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698