Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(714)

Side by Side Diff: chromeos/settings/cros_settings_names.cc

Issue 2652793003: Add login screen locale and input method device policies (Closed)
Patch Set: Addressed comments. Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 213 matching lines...) Expand 10 before | Expand all | Expand 10 after
224 const char kLoginVideoCaptureAllowedUrls[] = 224 const char kLoginVideoCaptureAllowedUrls[] =
225 "cros.device.login_video_capture_allowed_urls"; 225 "cros.device.login_video_capture_allowed_urls";
226 226
227 // A list pref storing the apps to install on the login page. 227 // A list pref storing the apps to install on the login page.
228 const char kLoginApps[] = "cros.device.login_apps"; 228 const char kLoginApps[] = "cros.device.login_apps";
229 229
230 // A string pref storing the url and cryptographic hash of the image in JSON 230 // A string pref storing the url and cryptographic hash of the image in JSON
231 // format allowed to set a device-level wallpaper before any user logs in. 231 // format allowed to set a device-level wallpaper before any user logs in.
232 const char kDeviceWallpaperImage[] = "cros.device_wallpaper_image"; 232 const char kDeviceWallpaperImage[] = "cros.device_wallpaper_image";
233 233
234 // A list pref specifying the locales allowed on the login screen. Currently
235 // only the first value is used, as the single locale allowed on the login
236 // screen.
237 const char kDeviceLoginScreenLocales[] = "cros.device_login_screen_locales";
238
239 // A list pref containing the input method IDs allowed on the login screen.
240 const char kDeviceLoginScreenInputMethods[] =
241 "cros.device_login_screen_input_methods";
242
234 } // namespace chromeos 243 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698