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 | |
636 // Boolean controlling whether history saving is disabled. | 631 // Boolean controlling whether history saving is disabled. |
637 const char kSavingBrowserHistoryDisabled[] = "history.saving_disabled"; | 632 const char kSavingBrowserHistoryDisabled[] = "history.saving_disabled"; |
638 | 633 |
639 // Boolean controlling whether printing is enabled. | 634 // Boolean controlling whether printing is enabled. |
640 const char kPrintingEnabled[] = "printing.enabled"; | 635 const char kPrintingEnabled[] = "printing.enabled"; |
641 | 636 |
642 // Enable print preview once for supported platforms. | 637 // Enable print preview once for supported platforms. |
643 #if defined(GOOGLE_CHROME_BUILD) | 638 #if defined(GOOGLE_CHROME_BUILD) |
644 const char kPrintingPrintPreviewEnabledOnce[] = | 639 const char kPrintingPrintPreviewEnabledOnce[] = |
645 "printing.print_preview_enabled_once"; | 640 "printing.print_preview_enabled_once"; |
(...skipping 994 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1640 | 1635 |
1641 // String that represents the recovery component last downloaded version. This | 1636 // String that represents the recovery component last downloaded version. This |
1642 // takes the usual 'a.b.c.d' notation. | 1637 // takes the usual 'a.b.c.d' notation. |
1643 const char kRecoveryComponentVersion[] = "recovery_component.version"; | 1638 const char kRecoveryComponentVersion[] = "recovery_component.version"; |
1644 | 1639 |
1645 // String that stores the component updater last known state. This is used for | 1640 // String that stores the component updater last known state. This is used for |
1646 // troubleshooting. | 1641 // troubleshooting. |
1647 const char kComponentUpdaterState[] = "component_updater.state"; | 1642 const char kComponentUpdaterState[] = "component_updater.state"; |
1648 | 1643 |
1649 } // namespace prefs | 1644 } // namespace prefs |
OLD | NEW |