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

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

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 // Constants for the names of various preferences, for easier changing. 5 // Constants for the names of various preferences, for easier changing.
6 6
7 #ifndef CHROME_COMMON_PREF_NAMES_H_ 7 #ifndef CHROME_COMMON_PREF_NAMES_H_
8 #define CHROME_COMMON_PREF_NAMES_H_ 8 #define CHROME_COMMON_PREF_NAMES_H_
9 #pragma once 9 #pragma once
10 10
(...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after
333 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) && defined(OS_POSIX) 333 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) && defined(OS_POSIX)
334 extern const char kLocalProfileId[]; 334 extern const char kLocalProfileId[];
335 extern const char kPasswordsUseLocalProfileId[]; 335 extern const char kPasswordsUseLocalProfileId[];
336 #endif 336 #endif
337 337
338 extern const char kProfileAvatarIndex[]; 338 extern const char kProfileAvatarIndex[];
339 extern const char kProfileName[]; 339 extern const char kProfileName[];
340 340
341 extern const char kInvertNotificationShown[]; 341 extern const char kInvertNotificationShown[];
342 342
343 extern const char kPasswordGenerationEnabled[];
Ilya Sherman 2012/05/01 22:27:48 nit: Please add this at line 121 (and in the corre
zysxqn 2012/05/03 00:57:24 Done.
344
343 // Local state prefs. Please add Profile prefs above instead. 345 // Local state prefs. Please add Profile prefs above instead.
344 extern const char kCertRevocationCheckingEnabled[]; 346 extern const char kCertRevocationCheckingEnabled[];
345 extern const char kSSL3Enabled[]; 347 extern const char kSSL3Enabled[];
346 extern const char kTLS1Enabled[]; 348 extern const char kTLS1Enabled[];
347 extern const char kCipherSuiteBlacklist[]; 349 extern const char kCipherSuiteBlacklist[];
348 extern const char kEnableOriginBoundCerts[]; 350 extern const char kEnableOriginBoundCerts[];
349 extern const char kDisableSSLRecordSplitting[]; 351 extern const char kDisableSSLRecordSplitting[];
350 extern const char kEnableMemoryInfo[]; 352 extern const char kEnableMemoryInfo[];
351 353
352 extern const char kMetricsClientID[]; 354 extern const char kMetricsClientID[];
(...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after
690 extern const char kPointsBufferedForVelocity[]; 692 extern const char kPointsBufferedForVelocity[];
691 extern const char kRailBreakProportion[]; 693 extern const char kRailBreakProportion[];
692 extern const char kRailStartProportion[]; 694 extern const char kRailStartProportion[];
693 #endif 695 #endif
694 696
695 extern const char kInManagedMode[]; 697 extern const char kInManagedMode[];
696 698
697 } // namespace prefs 699 } // namespace prefs
698 700
699 #endif // CHROME_COMMON_PREF_NAMES_H_ 701 #endif // CHROME_COMMON_PREF_NAMES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698