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

Side by Side Diff: chrome/browser/chromeos/kiosk_mode/kiosk_mode_screen_locker.h

Issue 9265026: Implement restart on Idle for Kiosk Mode. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 11 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_CHROMEOS_KIOSK_MODE_KIOSK_MODE_SCREEN_LOCKER_H_
6 #define CHROME_BROWSER_CHROMEOS_KIOSK_MODE_KIOSK_MODE_SCREEN_LOCKER_H_
7 #pragma once
8
9 #include "base/time.h"
10 #include "base/timer.h"
11
12 namespace chromeos {
13
14 class KioskModeScreenLocker {
15 public:
16 static void InitClass();
17
18 private:
19 KioskModeScreenLocker() {}
20
21 base::RepeatingTimer<KioskModeScreenLocker> slow_timer_;
22 base::RepeatingTimer<KioskModeScreenLocker> fast_timer_;
23
24 DISALLOW_COPY_AND_ASSIGN(KioskModeScreenLocker);
25 };
26
27 } // namespace chromeos
28
29 #endif // CHROME_BROWSER_CHROMEOS_KIOSK_MODE_KIOSK_MODE_SCREEN_LOCKER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698