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

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: Philipps suggestion, another test 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 2241 matching lines...) Expand 10 before | Expand all | Expand 10 after
2252 2252
2253 // A string pref with initial locale set in VPD or manifest. 2253 // A string pref with initial locale set in VPD or manifest.
2254 const char kInitialLocale[] = "intl.initial_locale"; 2254 const char kInitialLocale[] = "intl.initial_locale";
2255 2255
2256 // A boolean pref of the OOBE complete flag (first OOBE part before login). 2256 // A boolean pref of the OOBE complete flag (first OOBE part before login).
2257 const char kOobeComplete[] = "OobeComplete"; 2257 const char kOobeComplete[] = "OobeComplete";
2258 2258
2259 // A boolean pref of the device registered flag (second part after first login). 2259 // A boolean pref of the device registered flag (second part after first login).
2260 const char kDeviceRegistered[] = "DeviceRegistered"; 2260 const char kDeviceRegistered[] = "DeviceRegistered";
2261 2261
2262 // List of usernames that used certificates pushed by policy before.
2263 // This is used to prevent these users from joining multiprofile sessions.
2264 const char kUsedPolicyCertificates[] = "policy.used_policy_certificates";
2265
2262 #endif 2266 #endif
2263 2267
2264 // Whether there is a Flash version installed that supports clearing LSO data. 2268 // Whether there is a Flash version installed that supports clearing LSO data.
2265 const char kClearPluginLSODataEnabled[] = "browser.clear_lso_data_enabled"; 2269 const char kClearPluginLSODataEnabled[] = "browser.clear_lso_data_enabled";
2266 2270
2267 // Whether we should show Pepper Flash-specific settings. 2271 // Whether we should show Pepper Flash-specific settings.
2268 const char kPepperFlashSettingsEnabled[] = 2272 const char kPepperFlashSettingsEnabled[] =
2269 "browser.pepper_flash_settings_enabled"; 2273 "browser.pepper_flash_settings_enabled";
2270 2274
2271 // String which specifies where to store the disk cache. 2275 // String which specifies where to store the disk cache.
(...skipping 403 matching lines...) Expand 10 before | Expand all | Expand 10 after
2675 const char kOsPasswordBlank[] = "password_manager.os_password_blank"; 2679 const char kOsPasswordBlank[] = "password_manager.os_password_blank";
2676 2680
2677 // The number of seconds since epoch that the OS password was last changed. 2681 // The number of seconds since epoch that the OS password was last changed.
2678 const char kOsPasswordLastChanged[] = 2682 const char kOsPasswordLastChanged[] =
2679 "password_manager.os_password_last_changed"; 2683 "password_manager.os_password_last_changed";
2680 #endif 2684 #endif
2681 2685
2682 // Whether DNS Quick Check is disabled in proxy resolution. 2686 // Whether DNS Quick Check is disabled in proxy resolution.
2683 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; 2687 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled";
2684 } // namespace prefs 2688 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698