| OLD | NEW |
| 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 912 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 923 // Profile avatar and name | 923 // Profile avatar and name |
| 924 const char kProfileAvatarIndex[] = "profile.avatar_index"; | 924 const char kProfileAvatarIndex[] = "profile.avatar_index"; |
| 925 const char kProfileName[] = "profile.name"; | 925 const char kProfileName[] = "profile.name"; |
| 926 | 926 |
| 927 // *************** LOCAL STATE *************** | 927 // *************** LOCAL STATE *************** |
| 928 // These are attached to the machine/installation | 928 // These are attached to the machine/installation |
| 929 | 929 |
| 930 // Directory of the last profile used. | 930 // Directory of the last profile used. |
| 931 const char kProfileLastUsed[] = "profile.last_used"; | 931 const char kProfileLastUsed[] = "profile.last_used"; |
| 932 | 932 |
| 933 // List of directories of the profiles last active. |
| 934 const char kProfilesLastActive[] = "profile.last_active_profiles"; |
| 935 |
| 933 // Total number of profiles created for this Chrome build. Used to tag profile | 936 // Total number of profiles created for this Chrome build. Used to tag profile |
| 934 // directories. | 937 // directories. |
| 935 const char kProfilesNumCreated[] = "profile.profiles_created"; | 938 const char kProfilesNumCreated[] = "profile.profiles_created"; |
| 936 | 939 |
| 937 // A map of profile data directory to cached information. This cache can be | 940 // A map of profile data directory to cached information. This cache can be |
| 938 // used to display information about profiles without actually having to load | 941 // used to display information about profiles without actually having to load |
| 939 // them. | 942 // them. |
| 940 const char kProfileInfoCache[] = "profile.info_cache"; | 943 const char kProfileInfoCache[] = "profile.info_cache"; |
| 941 | 944 |
| 942 // Prefs for SSLConfigServicePref. | 945 // Prefs for SSLConfigServicePref. |
| (...skipping 782 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1725 | 1728 |
| 1726 // String that represents the recovery component last downloaded version. This | 1729 // String that represents the recovery component last downloaded version. This |
| 1727 // takes the usual 'a.b.c.d' notation. | 1730 // takes the usual 'a.b.c.d' notation. |
| 1728 const char kRecoveryComponentVersion[] = "recovery_component.version"; | 1731 const char kRecoveryComponentVersion[] = "recovery_component.version"; |
| 1729 | 1732 |
| 1730 // String that stores the component updater last known state. This is used for | 1733 // String that stores the component updater last known state. This is used for |
| 1731 // troubleshooting. | 1734 // troubleshooting. |
| 1732 const char kComponentUpdaterState[] = "component_updater.state"; | 1735 const char kComponentUpdaterState[] = "component_updater.state"; |
| 1733 | 1736 |
| 1734 } // namespace prefs | 1737 } // namespace prefs |
| OLD | NEW |