| 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 | 8 |
| 9 namespace prefs { | 9 namespace prefs { |
| 10 | 10 |
| (...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 260 | 260 |
| 261 // Boolean that is true if the password manager is on (will record new | 261 // Boolean that is true if the password manager is on (will record new |
| 262 // passwords and fill in known passwords). | 262 // passwords and fill in known passwords). |
| 263 const char kPasswordManagerEnabled[] = "profile.password_manager_enabled"; | 263 const char kPasswordManagerEnabled[] = "profile.password_manager_enabled"; |
| 264 | 264 |
| 265 // Boolean controlling whether the password manager allows to retrieve passwords | 265 // Boolean controlling whether the password manager allows to retrieve passwords |
| 266 // in clear text. | 266 // in clear text. |
| 267 const char kPasswordManagerAllowShowPasswords[] = | 267 const char kPasswordManagerAllowShowPasswords[] = |
| 268 "profile.password_manager_allow_show_passwords"; | 268 "profile.password_manager_allow_show_passwords"; |
| 269 | 269 |
| 270 // Boolean that is true when password generation is enabled. |
| 271 const char kPasswordGenerationEnabled[] = "password_generation.enabled"; |
| 272 |
| 270 // Booleans identifying whether normal and reverse auto-logins are enabled. | 273 // Booleans identifying whether normal and reverse auto-logins are enabled. |
| 271 const char kAutologinEnabled[] = "autologin.enabled"; | 274 const char kAutologinEnabled[] = "autologin.enabled"; |
| 272 const char kReverseAutologinEnabled[] = "reverse_autologin.enabled"; | 275 const char kReverseAutologinEnabled[] = "reverse_autologin.enabled"; |
| 273 | 276 |
| 274 // Boolean that is true when SafeBrowsing is enabled. | 277 // Boolean that is true when SafeBrowsing is enabled. |
| 275 const char kSafeBrowsingEnabled[] = "safebrowsing.enabled"; | 278 const char kSafeBrowsingEnabled[] = "safebrowsing.enabled"; |
| 276 | 279 |
| 277 // Boolean that is true when SafeBrowsing Malware Report is enabled. | 280 // Boolean that is true when SafeBrowsing Malware Report is enabled. |
| 278 const char kSafeBrowsingReportingEnabled[] = | 281 const char kSafeBrowsingReportingEnabled[] = |
| 279 "safebrowsing.reporting_enabled"; | 282 "safebrowsing.reporting_enabled"; |
| (...skipping 1588 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1868 const char kInManagedMode[] = "managed_mode"; | 1871 const char kInManagedMode[] = "managed_mode"; |
| 1869 | 1872 |
| 1870 // Counts how many more times the 'profile on a network share' warning should be | 1873 // Counts how many more times the 'profile on a network share' warning should be |
| 1871 // shown to the user before the next silence period. | 1874 // shown to the user before the next silence period. |
| 1872 const char kNetworkProfileWarningsLeft[] = "network_profile.warnings_left"; | 1875 const char kNetworkProfileWarningsLeft[] = "network_profile.warnings_left"; |
| 1873 // Tracks the time of the last shown warning. Used to reset | 1876 // Tracks the time of the last shown warning. Used to reset |
| 1874 // |network_profile.warnings_left| after a silence period. | 1877 // |network_profile.warnings_left| after a silence period. |
| 1875 const char kNetworkProfileLastWarningTime[] = | 1878 const char kNetworkProfileLastWarningTime[] = |
| 1876 "network_profile.last_warning_time"; | 1879 "network_profile.last_warning_time"; |
| 1877 } // namespace prefs | 1880 } // namespace prefs |
| OLD | NEW |