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 320 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
331 // in clear text. | 331 // in clear text. |
332 const char kPasswordManagerAllowShowPasswords[] = | 332 const char kPasswordManagerAllowShowPasswords[] = |
333 "profile.password_manager_allow_show_passwords"; | 333 "profile.password_manager_allow_show_passwords"; |
334 | 334 |
335 // Boolean that is true when password generation is enabled. | 335 // Boolean that is true when password generation is enabled. |
336 const char kPasswordGenerationEnabled[] = "password_generation.enabled"; | 336 const char kPasswordGenerationEnabled[] = "password_generation.enabled"; |
337 | 337 |
338 // Booleans identifying whether normal and reverse auto-logins are enabled. | 338 // Booleans identifying whether normal and reverse auto-logins are enabled. |
339 const char kAutologinEnabled[] = "autologin.enabled"; | 339 const char kAutologinEnabled[] = "autologin.enabled"; |
340 const char kReverseAutologinEnabled[] = "reverse_autologin.enabled"; | 340 const char kReverseAutologinEnabled[] = "reverse_autologin.enabled"; |
| 341 const char kReverseAutologinPendingEmail[] = "reverse_autologin.pending_email"; |
341 | 342 |
342 // List to keep track of emails for which the user has rejected one-click | 343 // List to keep track of emails for which the user has rejected one-click |
343 // sign-in. | 344 // sign-in. |
344 const char kReverseAutologinRejectedEmailList[] = | 345 const char kReverseAutologinRejectedEmailList[] = |
345 "reverse_autologin.rejected_email_list"; | 346 "reverse_autologin.rejected_email_list"; |
346 | 347 |
347 // Boolean that is true when SafeBrowsing is enabled. | 348 // Boolean that is true when SafeBrowsing is enabled. |
348 const char kSafeBrowsingEnabled[] = "safebrowsing.enabled"; | 349 const char kSafeBrowsingEnabled[] = "safebrowsing.enabled"; |
349 | 350 |
350 // Boolean that is true when SafeBrowsing Malware Report is enabled. | 351 // Boolean that is true when SafeBrowsing Malware Report is enabled. |
(...skipping 1878 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2229 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; | 2230 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; |
2230 | 2231 |
2231 #if defined(OS_CHROMEOS) | 2232 #if defined(OS_CHROMEOS) |
2232 // The RLZ brand code, if enabled. | 2233 // The RLZ brand code, if enabled. |
2233 const char kRLZBrand[] = "rlz.brand"; | 2234 const char kRLZBrand[] = "rlz.brand"; |
2234 // Whether RLZ pings are disabled. | 2235 // Whether RLZ pings are disabled. |
2235 const char kRLZDisabled[] = "rlz.disabled"; | 2236 const char kRLZDisabled[] = "rlz.disabled"; |
2236 #endif | 2237 #endif |
2237 | 2238 |
2238 } // namespace prefs | 2239 } // namespace prefs |
OLD | NEW |