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

Unified Diff: chrome/browser/chromeos/power/session_length_limiter.h

Issue 11499012: Add policy for limiting the session length (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Upload flaked. Created 8 years 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/power/session_length_limiter.h
diff --git a/chrome/browser/chromeos/power/session_length_limiter.h b/chrome/browser/chromeos/power/session_length_limiter.h
new file mode 100644
index 0000000000000000000000000000000000000000..c1a4848c1de4b7a63cc6e2de5f966c45cdc29b74
--- /dev/null
+++ b/chrome/browser/chromeos/power/session_length_limiter.h
@@ -0,0 +1,64 @@
+// 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_POWER_SESSION_LENGTH_LIMITER_H_
+#define CHROME_BROWSER_CHROMEOS_POWER_SESSION_LENGTH_LIMITER_H_
+
+#include "base/basictypes.h"
+#include "base/memory/scoped_ptr.h"
+#include "base/prefs/public/pref_change_registrar.h"
+#include "base/threading/thread_checker.h"
+#include "base/time.h"
+#include "base/timer.h"
+
+class PrefService;
+
+namespace chromeos {
+
+// Enforces a session length limit by terminating the session when the limit is
+// reached.
+class SessionLengthLimiter {
+ public:
+ class Delegate {
+ public:
+ virtual ~Delegate();
+
+ virtual const base::Time GetCurrentTime() const = 0;
+ virtual void StopSession() = 0;
+ };
+
+ // Registers preferences.
+ static void RegisterPrefs(PrefService* local_state);
+
+ SessionLengthLimiter(Delegate* delegate, bool browser_restarted);
+
+ private:
+ void OnSessionLengthLimitChanged();
+
+ // Starts a timer that periodically checks whether the remaining time has
+ // reached zero.
+ void StartTimer();
+
+ // Stops the timer.
+ void StopTimer();
+
+ // Updates the remaining time, and terminates the session when the time
+ // reaches zero.
+ void UpdateRemainingTime();
+
+ base::ThreadChecker thread_checker_;
+
+ scoped_ptr<Delegate> delegate_;
+ PrefChangeRegistrar pref_change_registrar_;
+
+ scoped_ptr<base::RepeatingTimer<SessionLengthLimiter> > repeating_timer_;
+ base::Time session_start_time_;
+ base::TimeDelta session_length_limit_;
+
+ DISALLOW_COPY_AND_ASSIGN(SessionLengthLimiter);
+};
+
+} // namespace chromeos
+
+#endif // CHROME_BROWSER_CHROMEOS_POWER_SESSION_LENGTH_LIMITER_H_
« no previous file with comments | « chrome/browser/chromeos/login/user_manager_impl.cc ('k') | chrome/browser/chromeos/power/session_length_limiter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698