| 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_SETTINGS_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_KIOSK_MODE_KIOSK_MODE_SETTINGS_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_KIOSK_MODE_KIOSK_MODE_SETTINGS_H_ | 6 #define CHROME_BROWSER_CHROMEOS_KIOSK_MODE_KIOSK_MODE_SETTINGS_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| 11 #include "base/callback_forward.h" | 11 #include "base/callback_forward.h" |
| 12 #include "base/time.h" | 12 #include "base/time.h" |
| 13 #include "chrome/browser/chromeos/policy/app_pack_updater.h" |
| 13 #include "chrome/browser/chromeos/settings/device_settings_service.h" | 14 #include "chrome/browser/chromeos/settings/device_settings_service.h" |
| 14 #include "chrome/browser/policy/app_pack_updater.h" | |
| 15 | 15 |
| 16 namespace base { | 16 namespace base { |
| 17 template <typename T> struct DefaultLazyInstanceTraits; | 17 template <typename T> struct DefaultLazyInstanceTraits; |
| 18 } | 18 } |
| 19 | 19 |
| 20 namespace chromeos { | 20 namespace chromeos { |
| 21 | 21 |
| 22 // This class centralizes all our code to get KioskMode settings; since | 22 // This class centralizes all our code to get KioskMode settings; since |
| 23 // KioskMode interferes with normal operations all over Chrome, having all | 23 // KioskMode interferes with normal operations all over Chrome, having all |
| 24 // data about it pulled from a central location would make future | 24 // data about it pulled from a central location would make future |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 base::TimeDelta screensaver_timeout_; | 88 base::TimeDelta screensaver_timeout_; |
| 89 base::TimeDelta idle_logout_timeout_; | 89 base::TimeDelta idle_logout_timeout_; |
| 90 base::TimeDelta idle_logout_warning_duration_; | 90 base::TimeDelta idle_logout_warning_duration_; |
| 91 | 91 |
| 92 DISALLOW_COPY_AND_ASSIGN(KioskModeSettings); | 92 DISALLOW_COPY_AND_ASSIGN(KioskModeSettings); |
| 93 }; | 93 }; |
| 94 | 94 |
| 95 } // namespace chromeos | 95 } // namespace chromeos |
| 96 | 96 |
| 97 #endif // CHROME_BROWSER_CHROMEOS_KIOSK_MODE_KIOSK_MODE_SETTINGS_H_ | 97 #endif // CHROME_BROWSER_CHROMEOS_KIOSK_MODE_KIOSK_MODE_SETTINGS_H_ |
| OLD | NEW |