| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "chromeos/settings/cros_settings_names.h" | 5 #include "chromeos/settings/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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 // saver extension and the timeout before the screen saver should be started. | 106 // saver extension and the timeout before the screen saver should be started. |
| 107 const char kScreenSaverExtensionId[] = "cros.screen_saver.extension_id"; | 107 const char kScreenSaverExtensionId[] = "cros.screen_saver.extension_id"; |
| 108 const char kScreenSaverTimeout[] = "cros.screen_saver.timeout"; | 108 const char kScreenSaverTimeout[] = "cros.screen_saver.timeout"; |
| 109 | 109 |
| 110 // Values from the ForcedLogoutTimeouts proto. Defines the timeouts before a | 110 // Values from the ForcedLogoutTimeouts proto. Defines the timeouts before a |
| 111 // user is logged out after some period of inactivity as well as the duration of | 111 // user is logged out after some period of inactivity as well as the duration of |
| 112 // a warning message informing the user about the pending logout. | 112 // a warning message informing the user about the pending logout. |
| 113 const char kIdleLogoutTimeout[] = "cros.idle_logout.timeout"; | 113 const char kIdleLogoutTimeout[] = "cros.idle_logout.timeout"; |
| 114 const char kIdleLogoutWarningDuration[] = "cros.idle_logout.warning_duration"; | 114 const char kIdleLogoutWarningDuration[] = "cros.idle_logout.warning_duration"; |
| 115 | 115 |
| 116 // Defines the set of URLs to be opened on login to the anonymous account used | |
| 117 // if the device is in KIOSK mode. | |
| 118 const char kStartUpUrls[] = "cros.start_up_urls"; | |
| 119 | |
| 120 // This policy should not appear in the protobuf ever but is used internally to | 116 // This policy should not appear in the protobuf ever but is used internally to |
| 121 // signal that we are running in a "safe-mode" for policy recovery. | 117 // signal that we are running in a "safe-mode" for policy recovery. |
| 122 const char kPolicyMissingMitigationMode[] = | 118 const char kPolicyMissingMitigationMode[] = |
| 123 "cros.internal.policy_mitigation_mode"; | 119 "cros.internal.policy_mitigation_mode"; |
| 124 | 120 |
| 125 // A boolean pref that indicates whether users are allowed to redeem offers | 121 // A boolean pref that indicates whether users are allowed to redeem offers |
| 126 // through Chrome OS Registration. | 122 // through Chrome OS Registration. |
| 127 const char kAllowRedeemChromeOsRegistrationOffers[] = | 123 const char kAllowRedeemChromeOsRegistrationOffers[] = |
| 128 "cros.echo.allow_redeem_chrome_os_registration_offers"; | 124 "cros.echo.allow_redeem_chrome_os_registration_offers"; |
| 129 | 125 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 143 // A boolean pref that indicates whether attestation for content protection is | 139 // A boolean pref that indicates whether attestation for content protection is |
| 144 // enabled for the device. | 140 // enabled for the device. |
| 145 const char kAttestationForContentProtectionEnabled[] = | 141 const char kAttestationForContentProtectionEnabled[] = |
| 146 "cros.device.attestation_for_content_protection_enabled"; | 142 "cros.device.attestation_for_content_protection_enabled"; |
| 147 | 143 |
| 148 // The service account identity for device-level service accounts on | 144 // The service account identity for device-level service accounts on |
| 149 // enterprise-enrolled devices. | 145 // enterprise-enrolled devices. |
| 150 const char kServiceAccountIdentity[] = "cros.service_account_identity"; | 146 const char kServiceAccountIdentity[] = "cros.service_account_identity"; |
| 151 | 147 |
| 152 } // namespace chromeos | 148 } // namespace chromeos |
| OLD | NEW |