OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_CHROMEOS_KIOSK_MODE_KIOSK_MODE_HELPER_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_KIOSK_MODE_KIOSK_MODE_HELPER_H_ |
6 #define CHROME_BROWSER_CHROMEOS_KIOSK_MODE_KIOSK_MODE_HELPER_H_ | 6 #define CHROME_BROWSER_CHROMEOS_KIOSK_MODE_KIOSK_MODE_HELPER_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 | 10 |
(...skipping 22 matching lines...) Expand all Loading... |
33 // This method checks if Kiosk Mode is enabled or not. | 33 // This method checks if Kiosk Mode is enabled or not. |
34 static bool IsKioskModeEnabled(); | 34 static bool IsKioskModeEnabled(); |
35 | 35 |
36 static KioskModeHelper* Get(); | 36 static KioskModeHelper* Get(); |
37 | 37 |
38 // Initialize the settings helper; this will wait till trust is established | 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. | 39 // for the enterprise policies then call the callback to notify the caller. |
40 void Initialize(const base::Closure& notify_initialized); | 40 void Initialize(const base::Closure& notify_initialized); |
41 bool is_initialized() const { return is_initialized_; } | 41 bool is_initialized() const { return is_initialized_; } |
42 | 42 |
43 // Getters for various Kiosk Mode values. | 43 // The path to the screensaver extension. |
44 std::string GetScreensaverPath() const; | 44 std::string GetScreensaverPath() const; |
| 45 // The timeout before which we'll start showing the screensaver. |
45 int64 GetScreensaverTimeout() const; | 46 int64 GetScreensaverTimeout() const; |
| 47 // The time to logout the user in on idle. |
46 int64 GetIdleLogoutTimeout() const; | 48 int64 GetIdleLogoutTimeout() const; |
| 49 // The time to show the countdown timer for. |
47 int64 GetIdleLogoutWarningTimeout() const; | 50 int64 GetIdleLogoutWarningTimeout() const; |
48 | 51 |
49 private: | 52 private: |
50 friend struct base::DefaultLazyInstanceTraits<KioskModeHelper>; | 53 friend struct base::DefaultLazyInstanceTraits<KioskModeHelper>; |
51 KioskModeHelper(); | 54 KioskModeHelper(); |
52 | 55 |
53 bool is_initialized_; | 56 bool is_initialized_; |
54 | 57 |
55 DISALLOW_COPY_AND_ASSIGN(KioskModeHelper); | 58 DISALLOW_COPY_AND_ASSIGN(KioskModeHelper); |
56 }; | 59 }; |
57 | 60 |
58 | 61 |
59 } // namespace chromeos | 62 } // namespace chromeos |
60 | 63 |
61 #endif // CHROME_BROWSER_CHROMEOS_KIOSK_MODE_KIOSK_MODE_HELPER_H_ | 64 #endif // CHROME_BROWSER_CHROMEOS_KIOSK_MODE_KIOSK_MODE_HELPER_H_ |
OLD | NEW |