| 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 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 219 | 219 |
| 220 // A boolean pref to enable any pings or requests to the Quirks Server. | 220 // A boolean pref to enable any pings or requests to the Quirks Server. |
| 221 const char kDeviceQuirksDownloadEnabled[] = | 221 const char kDeviceQuirksDownloadEnabled[] = |
| 222 "cros.device.quirks_download_enabled"; | 222 "cros.device.quirks_download_enabled"; |
| 223 | 223 |
| 224 // A list pref storing the security origins allowed to access the webcam | 224 // A list pref storing the security origins allowed to access the webcam |
| 225 // during SAML logins. | 225 // during SAML logins. |
| 226 const char kLoginVideoCaptureAllowedUrls[] = | 226 const char kLoginVideoCaptureAllowedUrls[] = |
| 227 "cros.device.login_video_capture_allowed_urls"; | 227 "cros.device.login_video_capture_allowed_urls"; |
| 228 | 228 |
| 229 // A list pref storing the apps to install on the login page. | 229 // A list pref storing the apps to install on the login page. It is a list of |
| 230 const char kLoginApps[] = "cros.device.login_apps"; | 230 // strings, each string contains an extension ID and an update URL, delimited by |
| 231 // a semicolon. This preference is set by an admin policy. |
| 232 const char kDeviceLoginScreenAppInstallList[] = |
| 233 "cros.device.login_screen_app_install_list"; |
| 231 | 234 |
| 232 // A string pref storing the url and cryptographic hash of the image in JSON | 235 // A string pref storing the url and cryptographic hash of the image in JSON |
| 233 // format allowed to set a device-level wallpaper before any user logs in. | 236 // format allowed to set a device-level wallpaper before any user logs in. |
| 234 const char kDeviceWallpaperImage[] = "cros.device_wallpaper_image"; | 237 const char kDeviceWallpaperImage[] = "cros.device_wallpaper_image"; |
| 235 | 238 |
| 236 // A list pref specifying the locales allowed on the login screen. Currently | 239 // A list pref specifying the locales allowed on the login screen. Currently |
| 237 // only the first value is used, as the single locale allowed on the login | 240 // only the first value is used, as the single locale allowed on the login |
| 238 // screen. | 241 // screen. |
| 239 const char kDeviceLoginScreenLocales[] = "cros.device_login_screen_locales"; | 242 const char kDeviceLoginScreenLocales[] = "cros.device_login_screen_locales"; |
| 240 | 243 |
| 241 // A list pref containing the input method IDs allowed on the login screen. | 244 // A list pref containing the input method IDs allowed on the login screen. |
| 242 const char kDeviceLoginScreenInputMethods[] = | 245 const char kDeviceLoginScreenInputMethods[] = |
| 243 "cros.device_login_screen_input_methods"; | 246 "cros.device_login_screen_input_methods"; |
| 244 | 247 |
| 245 } // namespace chromeos | 248 } // namespace chromeos |
| OLD | NEW |