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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
89 "cros.internal.policy_mitigation_mode"; | 89 "cros.internal.policy_mitigation_mode"; |
90 | 90 |
91 // A boolean pref that indicates whether users are allowed to redeem offers | 91 // A boolean pref that indicates whether users are allowed to redeem offers |
92 // through Chrome OS Registration. | 92 // through Chrome OS Registration. |
93 const char kAllowRedeemChromeOsRegistrationOffers[] = | 93 const char kAllowRedeemChromeOsRegistrationOffers[] = |
94 "cros.echo.allow_redeem_chrome_os_registration_offers"; | 94 "cros.echo.allow_redeem_chrome_os_registration_offers"; |
95 | 95 |
96 // A list pref storing the flags that need to be applied to the browser upon | 96 // A list pref storing the flags that need to be applied to the browser upon |
97 // start-up. | 97 // start-up. |
98 const char kStartUpFlags[] = "cros.startup_flags"; | 98 const char kStartUpFlags[] = "cros.startup_flags"; |
| 99 |
| 100 // A boolean pref that indicates whether attestation is enabled for the device. |
| 101 const char kDeviceAttestationEnabled[] = "cros.device.attestation_enabled"; |
| 102 |
99 } // namespace chromeos | 103 } // namespace chromeos |
OLD | NEW |