| 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 27 matching lines...) Expand all Loading... |
| 38 | 38 |
| 39 // A boolean pref that indicates whether device activity times should be | 39 // A boolean pref that indicates whether device activity times should be |
| 40 // recorded and reported along with device policy requests. | 40 // recorded and reported along with device policy requests. |
| 41 const char kReportDeviceActivityTimes[] = | 41 const char kReportDeviceActivityTimes[] = |
| 42 "cros.device_status.report_activity_times"; | 42 "cros.device_status.report_activity_times"; |
| 43 | 43 |
| 44 // A boolean pref that indicates whether device the state of the dev switch | 44 // A boolean pref that indicates whether device the state of the dev switch |
| 45 // at boot mode should be reported along with device policy requests. | 45 // at boot mode should be reported along with device policy requests. |
| 46 const char kReportDeviceBootMode[] = "cros.device_status.report_boot_mode"; | 46 const char kReportDeviceBootMode[] = "cros.device_status.report_boot_mode"; |
| 47 | 47 |
| 48 // A list of dictionaries, each detailing one extension to install as part of |
| 49 // the AppPack and including the following fields: |
| 50 // "extension-id": ID of the extension to install |
| 51 // "update-url": URL to check the extension's version and download location |
| 52 // "key-checksum": checksum of the extension's CRX public key, encoded in hex. |
| 53 const char kKioskModeAppPack[] = "cros.kiosk_mode.app_pack"; |
| 54 |
| 48 } // namespace chromeos | 55 } // namespace chromeos |
| OLD | NEW |