| 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 825 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 836 const char kImportHomepage[] = "import_home_page"; | 836 const char kImportHomepage[] = "import_home_page"; |
| 837 | 837 |
| 838 // Boolean that specifies whether to import the search engine from the default | 838 // Boolean that specifies whether to import the search engine from the default |
| 839 // browser on first run. | 839 // browser on first run. |
| 840 const char kImportSearchEngine[] = "import_search_engine"; | 840 const char kImportSearchEngine[] = "import_search_engine"; |
| 841 | 841 |
| 842 // Boolean that specifies whether to import the saved passwords from the default | 842 // Boolean that specifies whether to import the saved passwords from the default |
| 843 // browser on first run. | 843 // browser on first run. |
| 844 const char kImportSavedPasswords[] = "import_saved_passwords"; | 844 const char kImportSavedPasswords[] = "import_saved_passwords"; |
| 845 | 845 |
| 846 // The URL of the enterprise web store, which is a site trusted by the |
| 847 // enterprise admin. Users can install apps & extensions from this site |
| 848 // without scary warnings. |
| 849 const char kEnterpriseWebStoreURL[] = "webstore.enterprise_store_url"; |
| 850 |
| 851 // The name of the enterprise web store, to be shown to the user. |
| 852 const char kEnterpriseWebStoreName[] = "webstore.enterprise_store_name"; |
| 853 |
| 846 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) && defined(OS_POSIX) | 854 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) && defined(OS_POSIX) |
| 847 // The local profile id for this profile. | 855 // The local profile id for this profile. |
| 848 const char kLocalProfileId[] = "profile.local_profile_id"; | 856 const char kLocalProfileId[] = "profile.local_profile_id"; |
| 849 | 857 |
| 850 // Whether passwords in external services (e.g. GNOME Keyring) have been tagged | 858 // Whether passwords in external services (e.g. GNOME Keyring) have been tagged |
| 851 // with the local profile id yet. (Used for migrating to tagged passwords.) | 859 // with the local profile id yet. (Used for migrating to tagged passwords.) |
| 852 const char kPasswordsUseLocalProfileId[] = | 860 const char kPasswordsUseLocalProfileId[] = |
| 853 "profile.passwords_use_local_profile_id"; | 861 "profile.passwords_use_local_profile_id"; |
| 854 #endif | 862 #endif |
| 855 | 863 |
| (...skipping 779 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1635 | 1643 |
| 1636 // String that represents the recovery component last downloaded version. This | 1644 // String that represents the recovery component last downloaded version. This |
| 1637 // takes the usual 'a.b.c.d' notation. | 1645 // takes the usual 'a.b.c.d' notation. |
| 1638 const char kRecoveryComponentVersion[] = "recovery_component.version"; | 1646 const char kRecoveryComponentVersion[] = "recovery_component.version"; |
| 1639 | 1647 |
| 1640 // String that stores the component updater last known state. This is used for | 1648 // String that stores the component updater last known state. This is used for |
| 1641 // troubleshooting. | 1649 // troubleshooting. |
| 1642 const char kComponentUpdaterState[] = "component_updater.state"; | 1650 const char kComponentUpdaterState[] = "component_updater.state"; |
| 1643 | 1651 |
| 1644 } // namespace prefs | 1652 } // namespace prefs |
| OLD | NEW |