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

Side by Side Diff: chrome/common/pref_names.cc

Issue 117263002: Prevent ONC-pushed certificates from being used with multiprofiles. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixed comment Created 7 years 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 (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/common/pref_names.h" 5 #include "chrome/common/pref_names.h"
6 6
7 #include "base/basictypes.h" 7 #include "base/basictypes.h"
8 #include "chrome/common/pref_font_webkit_names.h" 8 #include "chrome/common/pref_font_webkit_names.h"
9 9
10 namespace prefs { 10 namespace prefs {
(...skipping 2233 matching lines...) Expand 10 before | Expand all | Expand 10 after
2244 2244
2245 // A string pref with initial locale set in VPD or manifest. 2245 // A string pref with initial locale set in VPD or manifest.
2246 const char kInitialLocale[] = "intl.initial_locale"; 2246 const char kInitialLocale[] = "intl.initial_locale";
2247 2247
2248 // A boolean pref of the OOBE complete flag (first OOBE part before login). 2248 // A boolean pref of the OOBE complete flag (first OOBE part before login).
2249 const char kOobeComplete[] = "OobeComplete"; 2249 const char kOobeComplete[] = "OobeComplete";
2250 2250
2251 // A boolean pref of the device registered flag (second part after first login). 2251 // A boolean pref of the device registered flag (second part after first login).
2252 const char kDeviceRegistered[] = "DeviceRegistered"; 2252 const char kDeviceRegistered[] = "DeviceRegistered";
2253 2253
2254 // List of usernames that used certificates pushed by policy before.
2255 // This is used to prevent these users from joining multiprofile sessions.
2256 const char kUsedPolicyCertificates[] = "policy.used_policy_certificates";
2257
2254 #endif 2258 #endif
2255 2259
2256 // Whether there is a Flash version installed that supports clearing LSO data. 2260 // Whether there is a Flash version installed that supports clearing LSO data.
2257 const char kClearPluginLSODataEnabled[] = "browser.clear_lso_data_enabled"; 2261 const char kClearPluginLSODataEnabled[] = "browser.clear_lso_data_enabled";
2258 2262
2259 // Whether we should show Pepper Flash-specific settings. 2263 // Whether we should show Pepper Flash-specific settings.
2260 const char kPepperFlashSettingsEnabled[] = 2264 const char kPepperFlashSettingsEnabled[] =
2261 "browser.pepper_flash_settings_enabled"; 2265 "browser.pepper_flash_settings_enabled";
2262 2266
2263 // String which specifies where to store the disk cache. 2267 // String which specifies where to store the disk cache.
(...skipping 403 matching lines...) Expand 10 before | Expand all | Expand 10 after
2667 const char kOsPasswordBlank[] = "password_manager.os_password_blank"; 2671 const char kOsPasswordBlank[] = "password_manager.os_password_blank";
2668 2672
2669 // The number of seconds since epoch that the OS password was last changed. 2673 // The number of seconds since epoch that the OS password was last changed.
2670 const char kOsPasswordLastChanged[] = 2674 const char kOsPasswordLastChanged[] =
2671 "password_manager.os_password_last_changed"; 2675 "password_manager.os_password_last_changed";
2672 #endif 2676 #endif
2673 2677
2674 // Whether DNS Quick Check is disabled in proxy resolution. 2678 // Whether DNS Quick Check is disabled in proxy resolution.
2675 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; 2679 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled";
2676 } // namespace prefs 2680 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698