OLD | NEW |
(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 static KioskModeHelper* Get(); |
| 34 |
| 35 // This method checks if Kiosk Mode is enabled or not. |
| 36 // This method does not need the helper to be initialized. |
| 37 bool IsKioskModeEnabled() const; |
| 38 |
| 39 // Initialize the settings helper; this will wait till trust is established |
| 40 // for the enterprise policies then call the callback to notify the caller. |
| 41 void Initialize(const base::Closure& notify_initialized); |
| 42 bool is_initialized() const { return is_initialized_; } |
| 43 |
| 44 // Getters for various Kiosk Mode values. |
| 45 std::string GetScreensaverPath() const; |
| 46 int64 GetScreensaverTimeout() const; |
| 47 |
| 48 private: |
| 49 friend struct base::DefaultLazyInstanceTraits<KioskModeHelper>; |
| 50 KioskModeHelper(); |
| 51 |
| 52 bool is_initialized_; |
| 53 |
| 54 DISALLOW_COPY_AND_ASSIGN(KioskModeHelper); |
| 55 }; |
| 56 |
| 57 |
| 58 } // namespace chromeos |
| 59 |
| 60 #endif // CHROME_BROWSER_CHROMEOS_KIOSK_MODE_KIOSK_MODE_HELPER_H_ |
OLD | NEW |