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 that shows when | |
Satish
2011/11/07 18:16:31
could simplify
'that shows when using the speech
Leandro GraciĆ” Gil
2011/11/07 19:34:42
Done.
| |
632 // using the speech input 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 991 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1632 | 1637 |
1633 // String that represents the recovery component last downloaded version. This | 1638 // String that represents the recovery component last downloaded version. This |
1634 // takes the usual 'a.b.c.d' notation. | 1639 // takes the usual 'a.b.c.d' notation. |
1635 const char kRecoveryComponentVersion[] = "recovery_component.version"; | 1640 const char kRecoveryComponentVersion[] = "recovery_component.version"; |
1636 | 1641 |
1637 // String that stores the component updater last known state. This is used for | 1642 // String that stores the component updater last known state. This is used for |
1638 // troubleshooting. | 1643 // troubleshooting. |
1639 const char kComponentUpdaterState[] = "component_updater.state"; | 1644 const char kComponentUpdaterState[] = "component_updater.state"; |
1640 | 1645 |
1641 } // namespace prefs | 1646 } // namespace prefs |
OLD | NEW |