| 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 #include "chrome/browser/chromeos/cros_settings_names.h" | 5 #include "chrome/browser/chromeos/cros_settings_names.h" |
| 6 | 6 |
| 7 namespace chromeos { | 7 namespace chromeos { |
| 8 | 8 |
| 9 const char kCrosSettingsPrefix[] = "cros."; | 9 const char kCrosSettingsPrefix[] = "cros."; |
| 10 | 10 |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 // saver extension and the timeout before the screen saver should be started. | 57 // saver extension and the timeout before the screen saver should be started. |
| 58 const char kScreenSaverExtensionId[] = "cros.screen_saver.extension_id"; | 58 const char kScreenSaverExtensionId[] = "cros.screen_saver.extension_id"; |
| 59 const char kScreenSaverTimeout[] = "cros.screen_saver.timeout"; | 59 const char kScreenSaverTimeout[] = "cros.screen_saver.timeout"; |
| 60 | 60 |
| 61 // Values from the ForcedLogoutTimeouts proto. Defines the timeouts before a | 61 // Values from the ForcedLogoutTimeouts proto. Defines the timeouts before a |
| 62 // user is logged out after some period of inactivity as well as the duration of | 62 // user is logged out after some period of inactivity as well as the duration of |
| 63 // a warning message informing the user about the pending logout. | 63 // a warning message informing the user about the pending logout. |
| 64 const char kIdleLogoutTimeout[] = "cros.idle_logout.timeout"; | 64 const char kIdleLogoutTimeout[] = "cros.idle_logout.timeout"; |
| 65 const char kIdleLogoutWarningDuration[] = "cros.idle_logout.warning_duration"; | 65 const char kIdleLogoutWarningDuration[] = "cros.idle_logout.warning_duration"; |
| 66 | 66 |
| 67 // Defines the set of URLs to be opened on login to the anonymous account used |
| 68 // if the device is in KIOSK mode. |
| 69 const char kStartUpUrls[] = "cros.start_up_urls"; |
| 70 |
| 67 } // namespace chromeos | 71 } // namespace chromeos |
| OLD | NEW |