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

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

Issue 8815005: Lands http://codereview.chromium.org/8801034/ in hopes of getting a (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years 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
« no previous file with comments | « chrome/common/pref_names.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 863 matching lines...) Expand 10 before | Expand all | Expand 10 after
874 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) && defined(OS_POSIX) 874 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) && defined(OS_POSIX)
875 // The local profile id for this profile. 875 // The local profile id for this profile.
876 const char kLocalProfileId[] = "profile.local_profile_id"; 876 const char kLocalProfileId[] = "profile.local_profile_id";
877 877
878 // Whether passwords in external services (e.g. GNOME Keyring) have been tagged 878 // Whether passwords in external services (e.g. GNOME Keyring) have been tagged
879 // with the local profile id yet. (Used for migrating to tagged passwords.) 879 // with the local profile id yet. (Used for migrating to tagged passwords.)
880 const char kPasswordsUseLocalProfileId[] = 880 const char kPasswordsUseLocalProfileId[] =
881 "profile.passwords_use_local_profile_id"; 881 "profile.passwords_use_local_profile_id";
882 #endif 882 #endif
883 883
884 // Profile avatar and name
885 const char kProfileAvatarIndex[] = "profile.avatar_index";
886 const char kProfileName[] = "profile.name";
887
888 // *************** LOCAL STATE *************** 884 // *************** LOCAL STATE ***************
889 // These are attached to the machine/installation 885 // These are attached to the machine/installation
890 886
891 // Directory of the last profile used. 887 // Directory of the last profile used.
892 const char kProfileLastUsed[] = "profile.last_used"; 888 const char kProfileLastUsed[] = "profile.last_used";
893 889
894 // Total number of profiles created for this Chrome build. Used to tag profile 890 // Total number of profiles created for this Chrome build. Used to tag profile
895 // directories. 891 // directories.
896 const char kProfilesNumCreated[] = "profile.profiles_created"; 892 const char kProfilesNumCreated[] = "profile.profiles_created";
897 893
(...skipping 783 matching lines...) Expand 10 before | Expand all | Expand 10 after
1681 1677
1682 // String that represents the recovery component last downloaded version. This 1678 // String that represents the recovery component last downloaded version. This
1683 // takes the usual 'a.b.c.d' notation. 1679 // takes the usual 'a.b.c.d' notation.
1684 const char kRecoveryComponentVersion[] = "recovery_component.version"; 1680 const char kRecoveryComponentVersion[] = "recovery_component.version";
1685 1681
1686 // String that stores the component updater last known state. This is used for 1682 // String that stores the component updater last known state. This is used for
1687 // troubleshooting. 1683 // troubleshooting.
1688 const char kComponentUpdaterState[] = "component_updater.state"; 1684 const char kComponentUpdaterState[] = "component_updater.state";
1689 1685
1690 } // namespace prefs 1686 } // namespace prefs
OLDNEW
« no previous file with comments | « chrome/common/pref_names.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698