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

Unified Diff: chrome/browser/chromeos/idle_detector.h

Issue 156493004: Add the ability to show a demo app on OOBE if a machine is derelict. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 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: chrome/browser/chromeos/idle_detector.h
diff --git a/chrome/browser/chromeos/idle_detector.h b/chrome/browser/chromeos/idle_detector.h
new file mode 100644
index 0000000000000000000000000000000000000000..7e81503964f530999fb644544d61d88f53f38562
--- /dev/null
+++ b/chrome/browser/chromeos/idle_detector.h
@@ -0,0 +1,42 @@
+// Copyright (c) 2012 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 CHROME_BROWSER_CHROMEOS_IDLE_DETECTOR_H_
+#define CHROME_BROWSER_CHROMEOS_IDLE_DETECTOR_H_
+
+#include "ash/wm/user_activity_observer.h"
+#include "base/basictypes.h"
+#include "base/compiler_specific.h"
+#include "base/timer/timer.h"
+
+namespace chromeos {
+
+class IdleDetector : public ash::UserActivityObserver {
+ public:
+ IdleDetector(const base::Closure& on_active_callback,
+ const base::Closure& on_idle_callback);
+ virtual ~IdleDetector();
+
+ void Start(const base::TimeDelta& timeout);
+
+ private:
+ // UserActivityObserver overrides:
+ virtual void OnUserActivity(const ui::Event* event) OVERRIDE;
+
+ // Resets |timer_| to fire when the logout dialog should be shown.
xiyuan 2014/02/11 03:42:45 nit: update the comment
rkc 2014/02/11 04:35:57 Done.
+ void ResetTimer();
+
+ base::OneShotTimer<IdleDetector> timer_;
+
+ base::Closure active_callback_;
+ base::Closure idle_callback_;
+
+ base::TimeDelta timeout_;
+
+ DISALLOW_COPY_AND_ASSIGN(IdleDetector);
+};
+
+} // namespace chromeos
+
+#endif // CHROME_BROWSER_CHROMEOS_IDLE_DETECTOR_H_

Powered by Google App Engine
This is Rietveld 408576698