Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(267)

Side by Side Diff: chrome/common/pref_names.cc

Issue 10222017: Make password generation switched by a preference in chrome settings rather than a command line fla… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Changes according to code reviews Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698