| 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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 // ChromeOS device uses this setting on login screen. | 57 // ChromeOS device uses this setting on login screen. |
| 58 const char kSystemUse24HourClock[] = "cros.system.use_24hour_clock"; | 58 const char kSystemUse24HourClock[] = "cros.system.use_24hour_clock"; |
| 59 | 59 |
| 60 const char kDeviceOwner[] = "cros.device.owner"; | 60 const char kDeviceOwner[] = "cros.device.owner"; |
| 61 | 61 |
| 62 const char kStatsReportingPref[] = "cros.metrics.reportingEnabled"; | 62 const char kStatsReportingPref[] = "cros.metrics.reportingEnabled"; |
| 63 | 63 |
| 64 const char kReleaseChannel[] = "cros.system.releaseChannel"; | 64 const char kReleaseChannel[] = "cros.system.releaseChannel"; |
| 65 const char kReleaseChannelDelegated[] = "cros.system.releaseChannelDelegated"; | 65 const char kReleaseChannelDelegated[] = "cros.system.releaseChannelDelegated"; |
| 66 | 66 |
| 67 // A string pref that, if set, enables the virtual keyboard and sets its layout. |
| 68 const char kKioskVirtualKeyboardLayout[] = |
| 69 "cros.system.kiosk_virtual_keyboard_layout"; |
| 70 |
| 67 // A boolean pref that indicates whether OS & firmware version info should be | 71 // A boolean pref that indicates whether OS & firmware version info should be |
| 68 // reported along with device policy requests. | 72 // reported along with device policy requests. |
| 69 const char kReportDeviceVersionInfo[] = | 73 const char kReportDeviceVersionInfo[] = |
| 70 "cros.device_status.report_version_info"; | 74 "cros.device_status.report_version_info"; |
| 71 | 75 |
| 72 // A boolean pref that indicates whether device activity times should be | 76 // A boolean pref that indicates whether device activity times should be |
| 73 // recorded and reported along with device policy requests. | 77 // recorded and reported along with device policy requests. |
| 74 const char kReportDeviceActivityTimes[] = | 78 const char kReportDeviceActivityTimes[] = |
| 75 "cros.device_status.report_activity_times"; | 79 "cros.device_status.report_activity_times"; |
| 76 | 80 |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 // A boolean pref that indicates whether attestation for content protection is | 145 // A boolean pref that indicates whether attestation for content protection is |
| 142 // enabled for the device. | 146 // enabled for the device. |
| 143 const char kAttestationForContentProtectionEnabled[] = | 147 const char kAttestationForContentProtectionEnabled[] = |
| 144 "cros.device.attestation_for_content_protection_enabled"; | 148 "cros.device.attestation_for_content_protection_enabled"; |
| 145 | 149 |
| 146 // The service account identity for device-level service accounts on | 150 // The service account identity for device-level service accounts on |
| 147 // enterprise-enrolled devices. | 151 // enterprise-enrolled devices. |
| 148 const char kServiceAccountIdentity[] = "cros.service_account_identity"; | 152 const char kServiceAccountIdentity[] = "cros.service_account_identity"; |
| 149 | 153 |
| 150 } // namespace chromeos | 154 } // namespace chromeos |
| OLD | NEW |