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

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: Make password generation checkbox hidden by the command flag. 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 253 matching lines...) Expand 10 before | Expand all | Expand 10 after
264 const char kAutologinEnabled[] = "autologin.enabled"; 264 const char kAutologinEnabled[] = "autologin.enabled";
265 const char kReverseAutologinEnabled[] = "reverse_autologin.enabled"; 265 const char kReverseAutologinEnabled[] = "reverse_autologin.enabled";
266 266
267 // Boolean that is true when SafeBrowsing is enabled. 267 // Boolean that is true when SafeBrowsing is enabled.
268 const char kSafeBrowsingEnabled[] = "safebrowsing.enabled"; 268 const char kSafeBrowsingEnabled[] = "safebrowsing.enabled";
269 269
270 // Boolean that is true when SafeBrowsing Malware Report is enabled. 270 // Boolean that is true when SafeBrowsing Malware Report is enabled.
271 const char kSafeBrowsingReportingEnabled[] = 271 const char kSafeBrowsingReportingEnabled[] =
272 "safebrowsing.reporting_enabled"; 272 "safebrowsing.reporting_enabled";
273 273
274 // Boolean that is true when auto password generation is enabled.
Ilya Sherman 2012/05/01 22:27:48 nit: Please omit "auto"
zysxqn 2012/05/03 00:57:24 Done.
275 const char kPasswordGenerationEnabled[] = "password_generation.enabled";
276
274 // Enum that specifies whether Incognito mode is: 277 // Enum that specifies whether Incognito mode is:
275 // 0 - Enabled. Default behaviour. Default mode is available on demand. 278 // 0 - Enabled. Default behaviour. Default mode is available on demand.
276 // 1 - Disabled. Used cannot browse pages in Incognito mode. 279 // 1 - Disabled. Used cannot browse pages in Incognito mode.
277 // 2 - Forced. All pages/sessions are forced into Incognito. 280 // 2 - Forced. All pages/sessions are forced into Incognito.
278 const char kIncognitoModeAvailability[] = "incognito.mode_availability"; 281 const char kIncognitoModeAvailability[] = "incognito.mode_availability";
279 282
280 // Boolean that is true when Suggest support is enabled. 283 // Boolean that is true when Suggest support is enabled.
281 const char kSearchSuggestEnabled[] = "search.suggest_enabled"; 284 const char kSearchSuggestEnabled[] = "search.suggest_enabled";
282 285
283 // Boolean that indicates whether the browser should put up a confirmation 286 // Boolean that indicates whether the browser should put up a confirmation
(...skipping 1555 matching lines...) Expand 10 before | Expand all | Expand 10 after
1839 const char kRailBreakProportion[] = 1842 const char kRailBreakProportion[] =
1840 "gesture.rail_break_proportion"; 1843 "gesture.rail_break_proportion";
1841 const char kRailStartProportion[] = 1844 const char kRailStartProportion[] =
1842 "gesture.rail_start_proportion"; 1845 "gesture.rail_start_proportion";
1843 #endif 1846 #endif
1844 1847
1845 // Indicates whether the browser is in managed mode. 1848 // Indicates whether the browser is in managed mode.
1846 const char kInManagedMode[] = "managed_mode"; 1849 const char kInManagedMode[] = "managed_mode";
1847 1850
1848 } // namespace prefs 1851 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698