| 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 735 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 746 const char kEnabledLabsExperiments[] = "browser.enabled_labs_experiments"; | 746 const char kEnabledLabsExperiments[] = "browser.enabled_labs_experiments"; |
| 747 | 747 |
| 748 // Boolean pref to define the default values for using auto spell correct. | 748 // Boolean pref to define the default values for using auto spell correct. |
| 749 const char kEnableAutoSpellCorrect[] = "browser.enable_autospellcorrect"; | 749 const char kEnableAutoSpellCorrect[] = "browser.enable_autospellcorrect"; |
| 750 | 750 |
| 751 // Boolean pref to define the default setting for "block offensive words". | 751 // Boolean pref to define the default setting for "block offensive words". |
| 752 // The old key value is kept to avoid unnecessary migration code. | 752 // The old key value is kept to avoid unnecessary migration code. |
| 753 const char kSpeechRecognitionFilterProfanities[] = | 753 const char kSpeechRecognitionFilterProfanities[] = |
| 754 "browser.speechinput_censor_results"; | 754 "browser.speechinput_censor_results"; |
| 755 | 755 |
| 756 // Boolean pref to determine if the tray notification balloon for speech input | |
| 757 // extension API has been already shown once to the user. | |
| 758 const char kSpeechInputTrayNotificationShown[] = | |
| 759 "browser.speechinput_tray_notification_shown"; | |
| 760 | |
| 761 // List of speech recognition context names (extensions or websites) for which | 756 // List of speech recognition context names (extensions or websites) for which |
| 762 // the tray notification balloon has already been shown. | 757 // the tray notification balloon has already been shown. |
| 763 const char kSpeechRecognitionTrayNotificationShownContexts[] = | 758 const char kSpeechRecognitionTrayNotificationShownContexts[] = |
| 764 "browser.speechinput_tray_notification_shown_contexts"; | 759 "browser.speechinput_tray_notification_shown_contexts"; |
| 765 | 760 |
| 766 // Boolean controlling whether history saving is disabled. | 761 // Boolean controlling whether history saving is disabled. |
| 767 const char kSavingBrowserHistoryDisabled[] = "history.saving_disabled"; | 762 const char kSavingBrowserHistoryDisabled[] = "history.saving_disabled"; |
| 768 | 763 |
| 769 #if defined(TOOLKIT_GTK) | 764 #if defined(TOOLKIT_GTK) |
| 770 // GTK specific preference on whether we should match the system GTK theme. | 765 // GTK specific preference on whether we should match the system GTK theme. |
| (...skipping 1182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1953 const char kNetworkProfileLastWarningTime[] = | 1948 const char kNetworkProfileLastWarningTime[] = |
| 1954 "network_profile.last_warning_time"; | 1949 "network_profile.last_warning_time"; |
| 1955 | 1950 |
| 1956 #if defined(OS_MACOSX) | 1951 #if defined(OS_MACOSX) |
| 1957 // A timestamp of when the obsolete OS infobar was last shown to a user on 10.5. | 1952 // A timestamp of when the obsolete OS infobar was last shown to a user on 10.5. |
| 1958 const char kMacLeopardObsoleteInfobarLastShown[] = | 1953 const char kMacLeopardObsoleteInfobarLastShown[] = |
| 1959 "mac_105_obsolete_infobar_last_shown"; | 1954 "mac_105_obsolete_infobar_last_shown"; |
| 1960 #endif // defined(OS_MACOSX) | 1955 #endif // defined(OS_MACOSX) |
| 1961 | 1956 |
| 1962 } // namespace prefs | 1957 } // namespace prefs |
| OLD | NEW |