| 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 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 307 const char kPasswordManagerAllowShowPasswords[] = | 307 const char kPasswordManagerAllowShowPasswords[] = |
| 308 "profile.password_manager_allow_show_passwords"; | 308 "profile.password_manager_allow_show_passwords"; |
| 309 | 309 |
| 310 // Boolean that is true when password generation is enabled. | 310 // Boolean that is true when password generation is enabled. |
| 311 const char kPasswordGenerationEnabled[] = "password_generation.enabled"; | 311 const char kPasswordGenerationEnabled[] = "password_generation.enabled"; |
| 312 | 312 |
| 313 // Booleans identifying whether normal and reverse auto-logins are enabled. | 313 // Booleans identifying whether normal and reverse auto-logins are enabled. |
| 314 const char kAutologinEnabled[] = "autologin.enabled"; | 314 const char kAutologinEnabled[] = "autologin.enabled"; |
| 315 const char kReverseAutologinEnabled[] = "reverse_autologin.enabled"; | 315 const char kReverseAutologinEnabled[] = "reverse_autologin.enabled"; |
| 316 | 316 |
| 317 // List to keep track of emails for which the user has rejected one-click |
| 318 // sign-in. |
| 319 const char kReverseAutologinRejectedEmailList[] = |
| 320 "reverse_autologin.rejected_email_list"; |
| 321 |
| 317 // Boolean that is true when SafeBrowsing is enabled. | 322 // Boolean that is true when SafeBrowsing is enabled. |
| 318 const char kSafeBrowsingEnabled[] = "safebrowsing.enabled"; | 323 const char kSafeBrowsingEnabled[] = "safebrowsing.enabled"; |
| 319 | 324 |
| 320 // Boolean that is true when SafeBrowsing Malware Report is enabled. | 325 // Boolean that is true when SafeBrowsing Malware Report is enabled. |
| 321 const char kSafeBrowsingReportingEnabled[] = | 326 const char kSafeBrowsingReportingEnabled[] = |
| 322 "safebrowsing.reporting_enabled"; | 327 "safebrowsing.reporting_enabled"; |
| 323 | 328 |
| 324 // Enum that specifies whether Incognito mode is: | 329 // Enum that specifies whether Incognito mode is: |
| 325 // 0 - Enabled. Default behaviour. Default mode is available on demand. | 330 // 0 - Enabled. Default behaviour. Default mode is available on demand. |
| 326 // 1 - Disabled. Used cannot browse pages in Incognito mode. | 331 // 1 - Disabled. Used cannot browse pages in Incognito mode. |
| (...skipping 1626 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1953 const char kNetworkProfileLastWarningTime[] = | 1958 const char kNetworkProfileLastWarningTime[] = |
| 1954 "network_profile.last_warning_time"; | 1959 "network_profile.last_warning_time"; |
| 1955 | 1960 |
| 1956 #if defined(OS_MACOSX) | 1961 #if defined(OS_MACOSX) |
| 1957 // A timestamp of when the obsolete OS infobar was last shown to a user on 10.5. | 1962 // A timestamp of when the obsolete OS infobar was last shown to a user on 10.5. |
| 1958 const char kMacLeopardObsoleteInfobarLastShown[] = | 1963 const char kMacLeopardObsoleteInfobarLastShown[] = |
| 1959 "mac_105_obsolete_infobar_last_shown"; | 1964 "mac_105_obsolete_infobar_last_shown"; |
| 1960 #endif // defined(OS_MACOSX) | 1965 #endif // defined(OS_MACOSX) |
| 1961 | 1966 |
| 1962 } // namespace prefs | 1967 } // namespace prefs |
| OLD | NEW |