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

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

Issue 9701084: Integrate Kiosk Mode with enterprise policies. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: yacf Created 8 years, 9 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_HELPER_H_
6 #define CHROME_BROWSER_CHROMEOS_KIOSK_MODE_KIOSK_MODE_HELPER_H_
7 #pragma once
8
9 #include <string>
10
11 #include "base/basictypes.h"
12 #include "base/callback_forward.h"
13
14 namespace base {
15 template <typename T> struct DefaultLazyInstanceTraits;
16 }
17
18 // This class centralizes all our code to get KioskMode settings; since
19 // KioskMode interferes with normal operations all over Chrome, having all
20 // data about it pulled from a central location would make future
21 // refactorings easier. This class also handles getting trust for the policies
22 // via it's init method.
23 //
24 // Note: If Initialize is not called before the various Getters, we'll return
25 // invalid values.
26 //
27 // TODO(rkc): Once the enterprise policy side of this code is checked in, add
28 // code to pull from the enterprise policy instead of flags and constants.
29 namespace chromeos {
30
31 class KioskModeHelper {
32 public:
33 // This method checks if Kiosk Mode is enabled or not.
34 static bool IsKioskModeEnabled();
35
36 static KioskModeHelper* Get();
37
38 // Initialize the settings helper; this will wait till trust is established
39 // for the enterprise policies then call the callback to notify the caller.
40 void Initialize(const base::Closure& notify_initialized);
41 bool is_initialized() const { return is_initialized_; }
42
43 // The path to the screensaver extension.
44 std::string GetScreensaverPath() const;
45 // The timeout before which we'll start showing the screensaver.
46 int64 GetScreensaverTimeout() const;
47 // The time to logout the user in on idle.
48 int64 GetIdleLogoutTimeout() const;
49 // The time to show the countdown timer for.
50 int64 GetIdleLogoutWarningTimeout() const;
51
52 private:
53 friend struct base::DefaultLazyInstanceTraits<KioskModeHelper>;
54 KioskModeHelper();
55
56 bool is_initialized_;
57
58 DISALLOW_COPY_AND_ASSIGN(KioskModeHelper);
59 };
60
61
62 } // namespace chromeos
63
64 #endif // CHROME_BROWSER_CHROMEOS_KIOSK_MODE_KIOSK_MODE_HELPER_H_
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/chrome_browser_main_chromeos.cc ('k') | chrome/browser/chromeos/kiosk_mode/kiosk_mode_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698