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