| Index: ash/system/chromeos/session/logout_confirmation_controller.h
|
| diff --git a/ash/system/chromeos/session/logout_confirmation_controller.h b/ash/system/chromeos/session/logout_confirmation_controller.h
|
| index e24406933d09ab0626e2860ba3694ac268bd3e5a..39db0f6dc7ef5b696afc16f97c844d5c1446eacd 100644
|
| --- a/ash/system/chromeos/session/logout_confirmation_controller.h
|
| +++ b/ash/system/chromeos/session/logout_confirmation_controller.h
|
| @@ -31,7 +31,7 @@ class ASH_EXPORT LogoutConfirmationController : public ShellObserver {
|
| public:
|
| // The |logout_closure| must be safe to call as long as |this| is alive.
|
| explicit LogoutConfirmationController(const base::Closure& logout_closure);
|
| - virtual ~LogoutConfirmationController();
|
| + ~LogoutConfirmationController() override;
|
|
|
| base::TickClock* clock() const { return clock_.get(); }
|
|
|
| @@ -43,7 +43,7 @@ class ASH_EXPORT LogoutConfirmationController : public ShellObserver {
|
| void SetClockForTesting(scoped_ptr<base::TickClock> clock);
|
|
|
| // ShellObserver:
|
| - virtual void OnLockStateChanged(bool locked) override;
|
| + void OnLockStateChanged(bool locked) override;
|
|
|
| // Called by the |dialog_| when the user confirms logout.
|
| void OnLogoutConfirmed();
|
|
|