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

Unified Diff: ash/system/chromeos/session/logout_button_tray.h

Issue 800983006: Update {virtual,override,final} to follow C++11 style in ash. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Workaround Created 5 years, 11 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
Index: ash/system/chromeos/session/logout_button_tray.h
diff --git a/ash/system/chromeos/session/logout_button_tray.h b/ash/system/chromeos/session/logout_button_tray.h
index f581bea298abe317ceed8297a52c9bc3306dee25..4bdddf97664d40cf90e8abe0979de5133ddac998 100644
--- a/ash/system/chromeos/session/logout_button_tray.h
+++ b/ash/system/chromeos/session/logout_button_tray.h
@@ -28,22 +28,20 @@ class ASH_EXPORT LogoutButtonTray : public TrayBackgroundView,
public views::ButtonListener {
public:
explicit LogoutButtonTray(StatusAreaWidget* status_area_widget);
- virtual ~LogoutButtonTray();
+ ~LogoutButtonTray() override;
// TrayBackgroundView:
- virtual void SetShelfAlignment(ShelfAlignment alignment) override;
- virtual base::string16 GetAccessibleNameForTray() override;
- virtual void HideBubbleWithView(
- const views::TrayBubbleView* bubble_view) override;
- virtual bool ClickedOutsideBubble() override;
+ void SetShelfAlignment(ShelfAlignment alignment) override;
+ base::string16 GetAccessibleNameForTray() override;
+ void HideBubbleWithView(const views::TrayBubbleView* bubble_view) override;
+ bool ClickedOutsideBubble() override;
// LogoutButtonObserver:
- virtual void OnShowLogoutButtonInTrayChanged(bool show) override;
- virtual void OnLogoutDialogDurationChanged(base::TimeDelta duration) override;
+ void OnShowLogoutButtonInTrayChanged(bool show) override;
+ void OnLogoutDialogDurationChanged(base::TimeDelta duration) override;
// views::ButtonListener:
- virtual void ButtonPressed(views::Button* sender,
- const ui::Event& event) override;
+ void ButtonPressed(views::Button* sender, const ui::Event& event) override;
void UpdateAfterLoginStatusChange(user::LoginStatus login_status);
« no previous file with comments | « ash/system/chromeos/session/last_window_closed_logout_reminder.h ('k') | ash/system/chromeos/session/logout_button_tray.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698