| 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 807 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 818 // storage, etc..) should be deleted on exit. | 818 // storage, etc..) should be deleted on exit. |
| 819 const char kClearSiteDataOnExit[] = "profile.clear_site_data_on_exit"; | 819 const char kClearSiteDataOnExit[] = "profile.clear_site_data_on_exit"; |
| 820 | 820 |
| 821 // Double that indicates the default zoom level. | 821 // Double that indicates the default zoom level. |
| 822 const char kDefaultZoomLevel[] = "profile.default_zoom_level"; | 822 const char kDefaultZoomLevel[] = "profile.default_zoom_level"; |
| 823 | 823 |
| 824 // Dictionary that maps hostnames to zoom levels. Hosts not in this pref will | 824 // Dictionary that maps hostnames to zoom levels. Hosts not in this pref will |
| 825 // be displayed at the default zoom level. | 825 // be displayed at the default zoom level. |
| 826 const char kPerHostZoomLevels[] = "profile.per_host_zoom_levels"; | 826 const char kPerHostZoomLevels[] = "profile.per_host_zoom_levels"; |
| 827 | 827 |
| 828 // Boolean that specifies whether or not a shortcut has been created for this |
| 829 // profile in multi-profiles mode. |
| 830 const char kProfileShortcutCreated[] = "profile.shortcut_created"; |
| 831 |
| 828 // Boolean that is true if Autofill is enabled and allowed to save profile data. | 832 // Boolean that is true if Autofill is enabled and allowed to save profile data. |
| 829 const char kAutofillEnabled[] = "autofill.enabled"; | 833 const char kAutofillEnabled[] = "autofill.enabled"; |
| 830 | 834 |
| 831 // Boolean that is true when auxiliary Autofill profiles are enabled. | 835 // Boolean that is true when auxiliary Autofill profiles are enabled. |
| 832 // Currently applies to Address Book "me" card on Mac. False on Win and Linux. | 836 // Currently applies to Address Book "me" card on Mac. False on Win and Linux. |
| 833 const char kAutofillAuxiliaryProfilesEnabled[] = | 837 const char kAutofillAuxiliaryProfilesEnabled[] = |
| 834 "autofill.auxiliary_profiles_enabled"; | 838 "autofill.auxiliary_profiles_enabled"; |
| 835 | 839 |
| 836 // Double that indicates positive (for matched forms) upload rate. | 840 // Double that indicates positive (for matched forms) upload rate. |
| 837 const char kAutofillPositiveUploadRate[] = "autofill.positive_upload_rate"; | 841 const char kAutofillPositiveUploadRate[] = "autofill.positive_upload_rate"; |
| (...skipping 883 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1721 // String that stores the component updater last known state. This is used for | 1725 // String that stores the component updater last known state. This is used for |
| 1722 // troubleshooting. | 1726 // troubleshooting. |
| 1723 const char kComponentUpdaterState[] = "component_updater.state"; | 1727 const char kComponentUpdaterState[] = "component_updater.state"; |
| 1724 | 1728 |
| 1725 // Set to true if Protector should be enabled. | 1729 // Set to true if Protector should be enabled. |
| 1726 // TODO(ivankr): This is a temporary solution for testing and will be removed | 1730 // TODO(ivankr): This is a temporary solution for testing and will be removed |
| 1727 // soon. | 1731 // soon. |
| 1728 const char kProtectorEnabled[] = "protector.enabled"; | 1732 const char kProtectorEnabled[] = "protector.enabled"; |
| 1729 | 1733 |
| 1730 } // namespace prefs | 1734 } // namespace prefs |
| OLD | NEW |