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

Unified Diff: ash/system/tray/tray_popup_item_container.h

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_popup_header_button.h ('k') | ash/system/tray/tray_popup_label_button.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/system/tray/tray_popup_item_container.h
diff --git a/ash/system/tray/tray_popup_item_container.h b/ash/system/tray/tray_popup_item_container.h
index 8992b2161dd6b855032f3576a0e8cc1d767f3b3f..3771b5c976e5f85401989f8fb1183b31cf785b63 100644
--- a/ash/system/tray/tray_popup_item_container.h
+++ b/ash/system/tray/tray_popup_item_container.h
@@ -17,7 +17,7 @@ class TrayPopupItemContainer : public views::View {
bool change_background,
bool draw_border);
- virtual ~TrayPopupItemContainer();
+ ~TrayPopupItemContainer() override;
bool active() {
return active_;
@@ -28,12 +28,12 @@ class TrayPopupItemContainer : public views::View {
void SetActive(bool active);
// views::View:
- virtual void ChildVisibilityChanged(views::View* child) override;
- virtual void ChildPreferredSizeChanged(views::View* child) override;
- virtual void OnMouseEntered(const ui::MouseEvent& event) override;
- virtual void OnMouseExited(const ui::MouseEvent& event) override;
- virtual void OnGestureEvent(ui::GestureEvent* event) override;
- virtual void OnPaintBackground(gfx::Canvas* canvas) override;
+ void ChildVisibilityChanged(views::View* child) override;
+ void ChildPreferredSizeChanged(views::View* child) override;
+ void OnMouseEntered(const ui::MouseEvent& event) override;
+ void OnMouseExited(const ui::MouseEvent& event) override;
+ void OnGestureEvent(ui::GestureEvent* event) override;
+ void OnPaintBackground(gfx::Canvas* canvas) override;
// True if either a mouse is hovering over this view, or if a user has touched
// down.
« no previous file with comments | « ash/system/tray/tray_popup_header_button.h ('k') | ash/system/tray/tray_popup_label_button.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698