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 1623 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1950 const char kNetworkProfileLastWarningTime[] = | 1955 const char kNetworkProfileLastWarningTime[] = |
1951 "network_profile.last_warning_time"; | 1956 "network_profile.last_warning_time"; |
1952 | 1957 |
1953 #if defined(OS_MACOSX) | 1958 #if defined(OS_MACOSX) |
1954 // A timestamp of when the obsolete OS infobar was last shown to a user on 10.5. | 1959 // A timestamp of when the obsolete OS infobar was last shown to a user on 10.5. |
1955 const char kMacLeopardObsoleteInfobarLastShown[] = | 1960 const char kMacLeopardObsoleteInfobarLastShown[] = |
1956 "mac_105_obsolete_infobar_last_shown"; | 1961 "mac_105_obsolete_infobar_last_shown"; |
1957 #endif // defined(OS_MACOSX) | 1962 #endif // defined(OS_MACOSX) |
1958 | 1963 |
1959 } // namespace prefs | 1964 } // namespace prefs |
OLD | NEW |