Chromium Code Reviews| 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/settings/cros_settings_names.h" | 5 #include "chrome/browser/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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 71 "cros.device_status.report_activity_times"; | 71 "cros.device_status.report_activity_times"; |
| 72 | 72 |
| 73 // A boolean pref that indicates whether the state of the dev mode switch at | 73 // A boolean pref that indicates whether the state of the dev mode switch at |
| 74 // boot should be reported along with device policy requests. | 74 // boot should be reported along with device policy requests. |
| 75 const char kReportDeviceBootMode[] = "cros.device_status.report_boot_mode"; | 75 const char kReportDeviceBootMode[] = "cros.device_status.report_boot_mode"; |
| 76 | 76 |
| 77 // A boolean pref that indicates whether the current location should be reported | 77 // A boolean pref that indicates whether the current location should be reported |
| 78 // along with device policy requests. | 78 // along with device policy requests. |
| 79 const char kReportDeviceLocation[] = "cros.device_status.report_location"; | 79 const char kReportDeviceLocation[] = "cros.device_status.report_location"; |
| 80 | 80 |
| 81 // Determines whether the device reports network interface types and address in | |
|
pneubeck (no reviews)
2013/07/04 15:51:48
typeS and address[]
inconsistent cardinality.
Mattias Nissler (ping if slow)
2013/07/11 17:41:46
Done.
| |
| 82 // device status reports to the device management server. | |
| 83 const char kReportDeviceNetworkInterfaces[] = | |
| 84 "cros.device_status.report_network_interfaces"; | |
| 85 | |
| 81 // A list of dictionaries, each detailing one extension to install as part of | 86 // A list of dictionaries, each detailing one extension to install as part of |
| 82 // the AppPack and including the following fields: | 87 // the AppPack and including the following fields: |
| 83 // "extension-id": ID of the extension to install | 88 // "extension-id": ID of the extension to install |
| 84 // "update-url": URL to check the extension's version and download location | 89 // "update-url": URL to check the extension's version and download location |
| 85 // "key-checksum": checksum of the extension's CRX public key, encoded in hex. | 90 // "key-checksum": checksum of the extension's CRX public key, encoded in hex. |
| 86 const char kAppPack[] = "cros.app_pack"; | 91 const char kAppPack[] = "cros.app_pack"; |
| 87 const char kAppPackKeyExtensionId[] = "extension-id"; | 92 const char kAppPackKeyExtensionId[] = "extension-id"; |
| 88 const char kAppPackKeyUpdateUrl[] = "update-url"; | 93 const char kAppPackKeyUpdateUrl[] = "update-url"; |
| 89 | 94 |
| 90 // Values from the ScreenSaver proto. Defines the extension ID of the screen | 95 // Values from the ScreenSaver proto. Defines the extension ID of the screen |
| (...skipping 27 matching lines...) Expand all Loading... | |
| 118 | 123 |
| 119 // A string pref for the restrict parameter to be appended to the Variations URL | 124 // A string pref for the restrict parameter to be appended to the Variations URL |
| 120 // when pinging the Variations server. | 125 // when pinging the Variations server. |
| 121 const char kVariationsRestrictParameter[] = | 126 const char kVariationsRestrictParameter[] = |
| 122 "cros.variations_restrict_parameter"; | 127 "cros.variations_restrict_parameter"; |
| 123 | 128 |
| 124 // A boolean pref that indicates whether attestation is enabled for the device. | 129 // A boolean pref that indicates whether attestation is enabled for the device. |
| 125 const char kDeviceAttestationEnabled[] = "cros.device.attestation_enabled"; | 130 const char kDeviceAttestationEnabled[] = "cros.device.attestation_enabled"; |
| 126 | 131 |
| 127 } // namespace chromeos | 132 } // namespace chromeos |
| OLD | NEW |