| 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 610 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 621 const char kEnabledLabsExperiments[] = "browser.enabled_labs_experiments"; | 621 const char kEnabledLabsExperiments[] = "browser.enabled_labs_experiments"; |
| 622 | 622 |
| 623 // Boolean pref to define the default values for using auto spell correct. | 623 // Boolean pref to define the default values for using auto spell correct. |
| 624 const char kEnableAutoSpellCorrect[] = "browser.enable_autospellcorrect"; | 624 const char kEnableAutoSpellCorrect[] = "browser.enable_autospellcorrect"; |
| 625 | 625 |
| 626 // Boolean pref to define the default setting for "block offensive words". | 626 // Boolean pref to define the default setting for "block offensive words". |
| 627 // The old key value is kept to avoid unnecessary migration code. | 627 // The old key value is kept to avoid unnecessary migration code. |
| 628 const char kSpeechInputFilterProfanities[] = | 628 const char kSpeechInputFilterProfanities[] = |
| 629 "browser.speechinput_censor_results"; | 629 "browser.speechinput_censor_results"; |
| 630 | 630 |
| 631 // Boolean pref to determine if the tray notification balloon for speech input |
| 632 // extension API has been already shown once to the user. |
| 633 const char kSpeechInputTrayNotificationShown[] = |
| 634 "browser.speechinput_tray_notification_shown"; |
| 635 |
| 631 // Boolean controlling whether history saving is disabled. | 636 // Boolean controlling whether history saving is disabled. |
| 632 const char kSavingBrowserHistoryDisabled[] = "history.saving_disabled"; | 637 const char kSavingBrowserHistoryDisabled[] = "history.saving_disabled"; |
| 633 | 638 |
| 634 // Boolean controlling whether printing is enabled. | 639 // Boolean controlling whether printing is enabled. |
| 635 const char kPrintingEnabled[] = "printing.enabled"; | 640 const char kPrintingEnabled[] = "printing.enabled"; |
| 636 | 641 |
| 637 // Enable print preview once for supported platforms. | 642 // Enable print preview once for supported platforms. |
| 638 #if defined(GOOGLE_CHROME_BUILD) | 643 #if defined(GOOGLE_CHROME_BUILD) |
| 639 const char kPrintingPrintPreviewEnabledOnce[] = | 644 const char kPrintingPrintPreviewEnabledOnce[] = |
| 640 "printing.print_preview_enabled_once"; | 645 "printing.print_preview_enabled_once"; |
| (...skipping 994 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1635 | 1640 |
| 1636 // String that represents the recovery component last downloaded version. This | 1641 // String that represents the recovery component last downloaded version. This |
| 1637 // takes the usual 'a.b.c.d' notation. | 1642 // takes the usual 'a.b.c.d' notation. |
| 1638 const char kRecoveryComponentVersion[] = "recovery_component.version"; | 1643 const char kRecoveryComponentVersion[] = "recovery_component.version"; |
| 1639 | 1644 |
| 1640 // String that stores the component updater last known state. This is used for | 1645 // String that stores the component updater last known state. This is used for |
| 1641 // troubleshooting. | 1646 // troubleshooting. |
| 1642 const char kComponentUpdaterState[] = "component_updater.state"; | 1647 const char kComponentUpdaterState[] = "component_updater.state"; |
| 1643 | 1648 |
| 1644 } // namespace prefs | 1649 } // namespace prefs |
| OLD | NEW |