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 824 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
835 | 835 |
836 // Double that indicates negative (for not matched forms) upload rate. | 836 // Double that indicates negative (for not matched forms) upload rate. |
837 const char kAutofillNegativeUploadRate[] = "autofill.negative_upload_rate"; | 837 const char kAutofillNegativeUploadRate[] = "autofill.negative_upload_rate"; |
838 | 838 |
839 // Boolean option set to true on the first run. Non-persistent. | 839 // Boolean option set to true on the first run. Non-persistent. |
840 const char kAutofillPersonalDataManagerFirstRun[] = "autofill.pdm.first_run"; | 840 const char kAutofillPersonalDataManagerFirstRun[] = "autofill.pdm.first_run"; |
841 | 841 |
842 // Modifying bookmarks is completely disabled when this is set to false. | 842 // Modifying bookmarks is completely disabled when this is set to false. |
843 const char kEditBookmarksEnabled[] = "bookmarks.editing_enabled"; | 843 const char kEditBookmarksEnabled[] = "bookmarks.editing_enabled"; |
844 | 844 |
| 845 // Boolean that is true when the garbled text auto fixing is enabled. |
| 846 const char kEnableAutoGarbledTextFix[] = "auto_garbled_text_fix.enabled"; |
| 847 |
845 // Boolean that is true when the translate feature is enabled. | 848 // Boolean that is true when the translate feature is enabled. |
846 const char kEnableTranslate[] = "translate.enabled"; | 849 const char kEnableTranslate[] = "translate.enabled"; |
847 | 850 |
848 const char kPinnedTabs[] = "pinned_tabs"; | 851 const char kPinnedTabs[] = "pinned_tabs"; |
849 | 852 |
850 // Boolean that is true when HTTP throttling is enabled. | 853 // Boolean that is true when HTTP throttling is enabled. |
851 const char kHttpThrottlingEnabled[] = "http_throttling.enabled"; | 854 const char kHttpThrottlingEnabled[] = "http_throttling.enabled"; |
852 | 855 |
853 // Boolean that is true until the user changes the setting of the check-box | 856 // Boolean that is true until the user changes the setting of the check-box |
854 // that controls whether HTTP throttling is enabled. When this is false, | 857 // that controls whether HTTP throttling is enabled. When this is false, |
(...skipping 869 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1724 | 1727 |
1725 // String that represents the recovery component last downloaded version. This | 1728 // String that represents the recovery component last downloaded version. This |
1726 // takes the usual 'a.b.c.d' notation. | 1729 // takes the usual 'a.b.c.d' notation. |
1727 const char kRecoveryComponentVersion[] = "recovery_component.version"; | 1730 const char kRecoveryComponentVersion[] = "recovery_component.version"; |
1728 | 1731 |
1729 // String that stores the component updater last known state. This is used for | 1732 // String that stores the component updater last known state. This is used for |
1730 // troubleshooting. | 1733 // troubleshooting. |
1731 const char kComponentUpdaterState[] = "component_updater.state"; | 1734 const char kComponentUpdaterState[] = "component_updater.state"; |
1732 | 1735 |
1733 } // namespace prefs | 1736 } // namespace prefs |
OLD | NEW |