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 841 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
852 const char kImportHomepage[] = "import_home_page"; | 852 const char kImportHomepage[] = "import_home_page"; |
853 | 853 |
854 // Boolean that specifies whether to import the search engine from the default | 854 // Boolean that specifies whether to import the search engine from the default |
855 // browser on first run. | 855 // browser on first run. |
856 const char kImportSearchEngine[] = "import_search_engine"; | 856 const char kImportSearchEngine[] = "import_search_engine"; |
857 | 857 |
858 // Boolean that specifies whether to import the saved passwords from the default | 858 // Boolean that specifies whether to import the saved passwords from the default |
859 // browser on first run. | 859 // browser on first run. |
860 const char kImportSavedPasswords[] = "import_saved_passwords"; | 860 const char kImportSavedPasswords[] = "import_saved_passwords"; |
861 | 861 |
| 862 // The URL of the enterprise web store, which is a site trusted by the |
| 863 // enterprise admin. Users can install apps & extensions from this site |
| 864 // without scary warnings. |
| 865 const char kEnterpriseWebStoreURL[] = "webstore.enterprise_store_url"; |
| 866 |
| 867 // The name of the enterprise web store, to be shown to the user. |
| 868 const char kEnterpriseWebStoreName[] = "webstore.enterprise_store_name"; |
| 869 |
862 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) && defined(OS_POSIX) | 870 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) && defined(OS_POSIX) |
863 // The local profile id for this profile. | 871 // The local profile id for this profile. |
864 const char kLocalProfileId[] = "profile.local_profile_id"; | 872 const char kLocalProfileId[] = "profile.local_profile_id"; |
865 | 873 |
866 // Whether passwords in external services (e.g. GNOME Keyring) have been tagged | 874 // Whether passwords in external services (e.g. GNOME Keyring) have been tagged |
867 // with the local profile id yet. (Used for migrating to tagged passwords.) | 875 // with the local profile id yet. (Used for migrating to tagged passwords.) |
868 const char kPasswordsUseLocalProfileId[] = | 876 const char kPasswordsUseLocalProfileId[] = |
869 "profile.passwords_use_local_profile_id"; | 877 "profile.passwords_use_local_profile_id"; |
870 #endif | 878 #endif |
871 | 879 |
(...skipping 783 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1655 | 1663 |
1656 // String that represents the recovery component last downloaded version. This | 1664 // String that represents the recovery component last downloaded version. This |
1657 // takes the usual 'a.b.c.d' notation. | 1665 // takes the usual 'a.b.c.d' notation. |
1658 const char kRecoveryComponentVersion[] = "recovery_component.version"; | 1666 const char kRecoveryComponentVersion[] = "recovery_component.version"; |
1659 | 1667 |
1660 // String that stores the component updater last known state. This is used for | 1668 // String that stores the component updater last known state. This is used for |
1661 // troubleshooting. | 1669 // troubleshooting. |
1662 const char kComponentUpdaterState[] = "component_updater.state"; | 1670 const char kComponentUpdaterState[] = "component_updater.state"; |
1663 | 1671 |
1664 } // namespace prefs | 1672 } // namespace prefs |
OLD | NEW |