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 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
184 const char kDisplayRotationDefault[] = "cros.display_rotation_default"; | 184 const char kDisplayRotationDefault[] = "cros.display_rotation_default"; |
185 | 185 |
186 // An integer pref that sets the behavior of the login authentication flow. | 186 // An integer pref that sets the behavior of the login authentication flow. |
187 // 0 = authentication using the default GAIA flow. | 187 // 0 = authentication using the default GAIA flow. |
188 // 1 = authentication using an interstitial screen that offers the user to go | 188 // 1 = authentication using an interstitial screen that offers the user to go |
189 // ahead via the SAML IdP of the device's enrollment domain, or go back to the | 189 // ahead via the SAML IdP of the device's enrollment domain, or go back to the |
190 // normal GAIA login flow. | 190 // normal GAIA login flow. |
191 const char kLoginAuthenticationBehavior[] = | 191 const char kLoginAuthenticationBehavior[] = |
192 "cros.device.login_authentication_behavior"; | 192 "cros.device.login_authentication_behavior"; |
193 | 193 |
194 // A boolean pref to enable any pings or requests to the Quirks Server. | |
Thiemo Nagel
2016/03/23 14:53:24
"any pings or requests" seems a bit broad. Are th
Greg Levin
2016/03/24 23:21:40
Potentially. At some point we might query the ser
| |
195 const char kDeviceQuirksDownloadEnabled[] = | |
196 "cros.device.quirks_download_enabled"; | |
197 | |
194 } // namespace chromeos | 198 } // namespace chromeos |
OLD | NEW |