| OLD | NEW |
| 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 2229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2240 | 2240 |
| 2241 // A string pref with initial locale set in VPD or manifest. | 2241 // A string pref with initial locale set in VPD or manifest. |
| 2242 const char kInitialLocale[] = "intl.initial_locale"; | 2242 const char kInitialLocale[] = "intl.initial_locale"; |
| 2243 | 2243 |
| 2244 // A boolean pref of the OOBE complete flag (first OOBE part before login). | 2244 // A boolean pref of the OOBE complete flag (first OOBE part before login). |
| 2245 const char kOobeComplete[] = "OobeComplete"; | 2245 const char kOobeComplete[] = "OobeComplete"; |
| 2246 | 2246 |
| 2247 // A boolean pref of the device registered flag (second part after first login). | 2247 // A boolean pref of the device registered flag (second part after first login). |
| 2248 const char kDeviceRegistered[] = "DeviceRegistered"; | 2248 const char kDeviceRegistered[] = "DeviceRegistered"; |
| 2249 | 2249 |
| 2250 // List of usernames that used certificates pushed by policy before. |
| 2251 // This is used to prevent these users from joining multiprofile sessions. |
| 2252 const char kUsedPolicyCertificates[] = "policy.used_policy_certificates"; |
| 2253 |
| 2250 #endif | 2254 #endif |
| 2251 | 2255 |
| 2252 // Whether there is a Flash version installed that supports clearing LSO data. | 2256 // Whether there is a Flash version installed that supports clearing LSO data. |
| 2253 const char kClearPluginLSODataEnabled[] = "browser.clear_lso_data_enabled"; | 2257 const char kClearPluginLSODataEnabled[] = "browser.clear_lso_data_enabled"; |
| 2254 | 2258 |
| 2255 // Whether we should show Pepper Flash-specific settings. | 2259 // Whether we should show Pepper Flash-specific settings. |
| 2256 const char kPepperFlashSettingsEnabled[] = | 2260 const char kPepperFlashSettingsEnabled[] = |
| 2257 "browser.pepper_flash_settings_enabled"; | 2261 "browser.pepper_flash_settings_enabled"; |
| 2258 | 2262 |
| 2259 // String which specifies where to store the disk cache. | 2263 // String which specifies where to store the disk cache. |
| (...skipping 400 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2660 #if defined(OS_WIN) | 2664 #if defined(OS_WIN) |
| 2661 // Whether the password was blank, only valid if OS password was last changed | 2665 // Whether the password was blank, only valid if OS password was last changed |
| 2662 // on or before the value contained in kOsPasswordLastChanged. | 2666 // on or before the value contained in kOsPasswordLastChanged. |
| 2663 const char kOsPasswordBlank[] = "password_manager.os_password_blank"; | 2667 const char kOsPasswordBlank[] = "password_manager.os_password_blank"; |
| 2664 | 2668 |
| 2665 // The number of seconds since epoch that the OS password was last changed. | 2669 // The number of seconds since epoch that the OS password was last changed. |
| 2666 const char kOsPasswordLastChanged[] = | 2670 const char kOsPasswordLastChanged[] = |
| 2667 "password_manager.os_password_last_changed"; | 2671 "password_manager.os_password_last_changed"; |
| 2668 #endif | 2672 #endif |
| 2669 } // namespace prefs | 2673 } // namespace prefs |
| OLD | NEW |