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 1563 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1843 const char kRailBreakProportion[] = | 1846 const char kRailBreakProportion[] = |
1844 "gesture.rail_break_proportion"; | 1847 "gesture.rail_break_proportion"; |
1845 const char kRailStartProportion[] = | 1848 const char kRailStartProportion[] = |
1846 "gesture.rail_start_proportion"; | 1849 "gesture.rail_start_proportion"; |
1847 #endif | 1850 #endif |
1848 | 1851 |
1849 // Indicates whether the browser is in managed mode. | 1852 // Indicates whether the browser is in managed mode. |
1850 const char kInManagedMode[] = "managed_mode"; | 1853 const char kInManagedMode[] = "managed_mode"; |
1851 | 1854 |
1852 } // namespace prefs | 1855 } // namespace prefs |
OLD | NEW |