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 namespace prefs { | 7 namespace prefs { |
8 | 8 |
9 // *************** PROFILE PREFS *************** | 9 // *************** PROFILE PREFS *************** |
10 // These are attached to the user profile | 10 // These are attached to the user profile |
(...skipping 729 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
740 const char kEnableHyperlinkAuditing[] = "enable_a_ping"; | 740 const char kEnableHyperlinkAuditing[] = "enable_a_ping"; |
741 | 741 |
742 // Whether to enable sending referrers. | 742 // Whether to enable sending referrers. |
743 const char kEnableReferrers[] = "enable_referrers"; | 743 const char kEnableReferrers[] = "enable_referrers"; |
744 | 744 |
745 #if defined(OS_MACOSX) | 745 #if defined(OS_MACOSX) |
746 // Whether presentation mode is enabled for fullscreen (used on Lion only). | 746 // Whether presentation mode is enabled for fullscreen (used on Lion only). |
747 const char kPresentationModeEnabled[] = "presentation_mode_enabled"; | 747 const char kPresentationModeEnabled[] = "presentation_mode_enabled"; |
748 #endif | 748 #endif |
749 | 749 |
| 750 // Boolean that specifies whether to import bookmarks from the default browser |
| 751 // on first run. |
| 752 const char kImportBookmarks[] = "import_bookmarks"; |
| 753 |
| 754 // Boolean that specifies whether to import the browsing history from the |
| 755 // default browser on first run. |
| 756 const char kImportHistory[] = "import_history"; |
| 757 |
| 758 // Boolean that specifies whether to import the homepage from the default |
| 759 // browser on first run. |
| 760 const char kImportHomepage[] = "import_home_page"; |
| 761 |
| 762 // Boolean that specifies whether to import the search engine from the default |
| 763 // browser on first run. |
| 764 const char kImportSearchEngine[] = "import_search_engine"; |
| 765 |
| 766 // Boolean that specifies whether to import the saved passwords from the default |
| 767 // browser on first run. |
| 768 const char kImportSavedPasswords[] = "import_saved_passwords"; |
| 769 |
750 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) && defined(OS_POSIX) | 770 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) && defined(OS_POSIX) |
751 // The local profile id for this profile. | 771 // The local profile id for this profile. |
752 const char kLocalProfileId[] = "profile.local_profile_id"; | 772 const char kLocalProfileId[] = "profile.local_profile_id"; |
753 | 773 |
754 // Whether passwords in external services (e.g. GNOME Keyring) have been tagged | 774 // Whether passwords in external services (e.g. GNOME Keyring) have been tagged |
755 // with the local profile id yet. (Used for migrating to tagged passwords.) | 775 // with the local profile id yet. (Used for migrating to tagged passwords.) |
756 const char kPasswordsUseLocalProfileId[] = | 776 const char kPasswordsUseLocalProfileId[] = |
757 "profile.passwords_use_local_profile_id"; | 777 "profile.passwords_use_local_profile_id"; |
758 #endif | 778 #endif |
759 | 779 |
(...skipping 713 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1473 // specified. | 1493 // specified. |
1474 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; | 1494 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; |
1475 | 1495 |
1476 // Integers that specify the policy refresh rate for device- and user-policy in | 1496 // Integers that specify the policy refresh rate for device- and user-policy in |
1477 // milliseconds. Not all values are meaningful, so it is clamped to a sane range | 1497 // milliseconds. Not all values are meaningful, so it is clamped to a sane range |
1478 // by the cloud policy subsystem. | 1498 // by the cloud policy subsystem. |
1479 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; | 1499 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; |
1480 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; | 1500 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; |
1481 | 1501 |
1482 } // namespace prefs | 1502 } // namespace prefs |
OLD | NEW |