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 // Boolean that is true when the SafeBrowsing interstitial should not allow | 329 // Boolean that is true when the SafeBrowsing interstitial should not allow |
325 // users to proceed anyway. | 330 // users to proceed anyway. |
326 const char kSafeBrowsingProceedAnywayDisabled[] = | 331 const char kSafeBrowsingProceedAnywayDisabled[] = |
(...skipping 1676 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2003 const char kNetworkProfileLastWarningTime[] = | 2008 const char kNetworkProfileLastWarningTime[] = |
2004 "network_profile.last_warning_time"; | 2009 "network_profile.last_warning_time"; |
2005 | 2010 |
2006 #if defined(OS_MACOSX) | 2011 #if defined(OS_MACOSX) |
2007 // A timestamp of when the obsolete OS infobar was last shown to a user on 10.5. | 2012 // A timestamp of when the obsolete OS infobar was last shown to a user on 10.5. |
2008 const char kMacLeopardObsoleteInfobarLastShown[] = | 2013 const char kMacLeopardObsoleteInfobarLastShown[] = |
2009 "mac_105_obsolete_infobar_last_shown"; | 2014 "mac_105_obsolete_infobar_last_shown"; |
2010 #endif // defined(OS_MACOSX) | 2015 #endif // defined(OS_MACOSX) |
2011 | 2016 |
2012 } // namespace prefs | 2017 } // namespace prefs |
OLD | NEW |