Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(146)

Side by Side Diff: chrome/common/pref_names.cc

Issue 10407120: Moving tray icon and notification balloon for background speech recognition sessions to ChromeSpeec… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed win issued ("interface" member clashes with a VS macro name, sigh) Created 8 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « chrome/common/pref_names.h ('k') | content/browser/speech/speech_recognition_dispatcher_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698