OLD | NEW |
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 Loading... |
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 |
884 // *************** LOCAL STATE *************** | 888 // *************** LOCAL STATE *************** |
885 // These are attached to the machine/installation | 889 // These are attached to the machine/installation |
886 | 890 |
887 // Directory of the last profile used. | 891 // Directory of the last profile used. |
888 const char kProfileLastUsed[] = "profile.last_used"; | 892 const char kProfileLastUsed[] = "profile.last_used"; |
889 | 893 |
890 // Total number of profiles created for this Chrome build. Used to tag profile | 894 // Total number of profiles created for this Chrome build. Used to tag profile |
891 // directories. | 895 // directories. |
892 const char kProfilesNumCreated[] = "profile.profiles_created"; | 896 const char kProfilesNumCreated[] = "profile.profiles_created"; |
893 | 897 |
(...skipping 783 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1677 | 1681 |
1678 // String that represents the recovery component last downloaded version. This | 1682 // String that represents the recovery component last downloaded version. This |
1679 // takes the usual 'a.b.c.d' notation. | 1683 // takes the usual 'a.b.c.d' notation. |
1680 const char kRecoveryComponentVersion[] = "recovery_component.version"; | 1684 const char kRecoveryComponentVersion[] = "recovery_component.version"; |
1681 | 1685 |
1682 // String that stores the component updater last known state. This is used for | 1686 // String that stores the component updater last known state. This is used for |
1683 // troubleshooting. | 1687 // troubleshooting. |
1684 const char kComponentUpdaterState[] = "component_updater.state"; | 1688 const char kComponentUpdaterState[] = "component_updater.state"; |
1685 | 1689 |
1686 } // namespace prefs | 1690 } // namespace prefs |
OLD | NEW |