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

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

Issue 1052673002: Expose kDeviceLoginScreenDomainAutoComplete through CrosSettings (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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 148 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 159
160 // A boolean pref that indicates whether the device automatically reboots when 160 // A boolean pref that indicates whether the device automatically reboots when
161 // the user initiates a shutdown via an UI element. If set to true, all 161 // the user initiates a shutdown via an UI element. If set to true, all
162 // shutdown buttons in the UI will be replaced by reboot buttons. 162 // shutdown buttons in the UI will be replaced by reboot buttons.
163 const char kRebootOnShutdown[] = "cros.device.reboot_on_shutdown"; 163 const char kRebootOnShutdown[] = "cros.device.reboot_on_shutdown";
164 164
165 // An integer pref that specifies the limit of the device's extension cache 165 // An integer pref that specifies the limit of the device's extension cache
166 // size in bytes. 166 // size in bytes.
167 const char kExtensionCacheSize[] = "cros.device.extension_cache_size"; 167 const char kExtensionCacheSize[] = "cros.device.extension_cache_size";
168 168
169 // An string pref that specifies a domain name for autocomplete option during
Andrew T Wilson (Slow) 2015/04/01 13:33:22 nit: A string pref nit: for the autocomplete opti
peletskyi 2015/04/01 13:55:19 Done.
170 // user sign-in flow.
171 const char kDeviceLoginScreenDomainAutoComplete[] =
172 "cros.device.login_screen_domain_auto_complete";
173
169 } // namespace chromeos 174 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698