// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_ASH_IDLE_DETECTOR_H_
#define CHROME_BROWSER_ASH_IDLE_DETECTOR_H_
#include "base/functional/callback.h"
#include "base/time/tick_clock.h"
#include "base/time/time.h"
#include "base/timer/timer.h"
#include "ui/base/user_activity/user_activity_observer.h"
namespace ash {
class IdleDetector : public ui::UserActivityObserver {
public:
IdleDetector(const base::RepeatingClosure& on_idle_callback,
const base::TickClock* tick_clock);
IdleDetector(const IdleDetector&) = delete;
IdleDetector& operator=(const IdleDetector&) = delete;
~IdleDetector() override;
void Start(const base::TimeDelta& timeout);
private:
// ui::UserActivityObserver overrides:
void OnUserActivity(const ui::Event* event) override;
// Resets |timer_| to fire when we reach our idle timeout.
void ResetTimer();
base::OneShotTimer timer_;
base::RepeatingClosure idle_callback_;
base::TimeDelta timeout_;
};
} // namespace ash
#endif // CHROME_BROWSER_ASH_IDLE_DETECTOR_H_