#ifndef ASH_SHUTDOWN_CONTROLLER_IMPL_H_
#define ASH_SHUTDOWN_CONTROLLER_IMPL_H_
#include "ash/ash_export.h"
#include "ash/public/cpp/shutdown_controller.h"
#include "base/observer_list.h"
namespace ash {
enum class ShutdownReason;
class ASH_EXPORT ShutdownControllerImpl : public ShutdownController {
public:
class Observer {
public:
virtual ~Observer() {}
virtual void OnShutdownPolicyChanged(bool reboot_on_shutdown) = 0;
};
ShutdownControllerImpl();
ShutdownControllerImpl(const ShutdownControllerImpl&) = delete;
ShutdownControllerImpl& operator=(const ShutdownControllerImpl&) = delete;
~ShutdownControllerImpl() override;
void AddObserver(Observer* observer);
void RemoveObserver(Observer* observer);
bool reboot_on_shutdown() const { return reboot_on_shutdown_; }
void SetRebootOnShutdown(bool reboot_on_shutdown) override;
void ShutDownOrReboot(ShutdownReason reason) override;
private:
bool reboot_on_shutdown_ = false;
base::ObserverList<Observer>::Unchecked observers_;
};
}
#endif