blob: b94affc5a279e1277af856cc846a3d3211903305 [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef ASH_SYSTEM_SESSION_LOGOUT_CONFIRMATION_CONTROLLER_H_
#define ASH_SYSTEM_SESSION_LOGOUT_CONFIRMATION_CONTROLLER_H_
#include <memory>
#include "ash/ash_export.h"
#include "ash/session/session_observer.h"
#include "base/callback_forward.h"
#include "base/macros.h"
#include "base/time/time.h"
#include "base/timer/timer.h"
namespace base {
class TickClock;
}
namespace ash {
class LogoutConfirmationDialog;
// This class shows a dialog asking the user to confirm or deny logout and
// terminates the session if the user either confirms or allows the countdown
// shown in the dialog to expire.
//
// It is guaranteed that no more than one confirmation dialog will be visible at
// any given time. If there are multiple requests to show a confirmation dialog
// at the same time, the dialog whose countdown expires first is shown.
//
// In public sessions, asks the user to end the session when the last window is
// closed.
class ASH_EXPORT LogoutConfirmationController : public SessionObserver {
public:
LogoutConfirmationController();
~LogoutConfirmationController() override;
base::TickClock* clock() const { return clock_.get(); }
// Shows a LogoutConfirmationDialog. If a confirmation dialog is already being
// shown, it is closed and a new one opened if |logout_time| is earlier than
// the current dialog's |logout_time_|.
void ConfirmLogout(base::TimeTicks logout_time);
// SessionObserver:
void OnLoginStatusChanged(LoginStatus login_status) override;
void OnLockStateChanged(bool locked) override;
// Called by the |dialog_| when the user confirms logout.
void OnLogoutConfirmed();
// Called by the |dialog_| when it is closed.
void OnDialogClosed();
void SetClockForTesting(std::unique_ptr<base::TickClock> clock);
void SetLogoutClosureForTesting(const base::Closure& logout_closure);
LogoutConfirmationDialog* dialog_for_testing() const { return dialog_; }
private:
class LastWindowClosedObserver;
std::unique_ptr<LastWindowClosedObserver> last_window_closed_observer_;
std::unique_ptr<base::TickClock> clock_;
base::Closure logout_closure_;
base::TimeTicks logout_time_;
LogoutConfirmationDialog* dialog_ = nullptr; // Owned by the Views hierarchy.
base::Timer logout_timer_;
ScopedSessionObserver scoped_session_observer_;
DISALLOW_COPY_AND_ASSIGN(LogoutConfirmationController);
};
} // namespace ash
#endif // ASH_SYSTEM_SESSION_LOGOUT_CONFIRMATION_CONTROLLER_H_