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

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

Issue 158143002: Fine tuned availability of hotword plugin. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix Created 6 years, 10 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
« no previous file with comments | « chrome/common/pref_names.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #include "chrome/common/pref_font_webkit_names.h" 8 #include "chrome/common/pref_font_webkit_names.h"
9 9
10 namespace prefs { 10 namespace prefs {
(...skipping 2117 matching lines...) Expand 10 before | Expand all | Expand 10 after
2128 // A boolean pref that controls the enabled-state of hotword search voice 2128 // A boolean pref that controls the enabled-state of hotword search voice
2129 // trigger. 2129 // trigger.
2130 const char kHotwordSearchEnabled[] = "hotword.search_enabled"; 2130 const char kHotwordSearchEnabled[] = "hotword.search_enabled";
2131 2131
2132 // An integer pref that keeps track of how many times the opt in popup for 2132 // An integer pref that keeps track of how many times the opt in popup for
2133 // hotword void search has been shown to the user. After this pref has reached 2133 // hotword void search has been shown to the user. After this pref has reached
2134 // the maximum number of times as defined by the HotwordService, the popup is no 2134 // the maximum number of times as defined by the HotwordService, the popup is no
2135 // longer shown. 2135 // longer shown.
2136 const char kHotwordOptInPopupTimesShown[] = "hotword.opt_in_popup_times_shown"; 2136 const char kHotwordOptInPopupTimesShown[] = "hotword.opt_in_popup_times_shown";
2137 2137
2138 #if defined(OS_CHROMEOS)
2139 // A boolean pref that controls the enabled-state of hotword search in the
2140 // app-list. This pref cooperates with kHotwordSearchEnabled. If the user
2141 // explicitly turns off kHotwordSearchEnabled, this pref should go off too.
2142 const char kHotwordAppListEnabled[] = "hotword.app_list_enabled";
2143 #endif
2144
2138 #if defined(OS_ANDROID) 2145 #if defined(OS_ANDROID)
2139 // Boolean that controls the global enabled-state of protected media identifier. 2146 // Boolean that controls the global enabled-state of protected media identifier.
2140 const char kProtectedMediaIdentifierEnabled[] = 2147 const char kProtectedMediaIdentifierEnabled[] =
2141 "protected_media_identifier.enabled"; 2148 "protected_media_identifier.enabled";
2142 #endif 2149 #endif
2143 2150
2144 #if defined(OS_CHROMEOS) 2151 #if defined(OS_CHROMEOS)
2145 // Dictionary for transient storage of settings that should go into device 2152 // Dictionary for transient storage of settings that should go into device
2146 // settings storage before owner has been assigned. 2153 // settings storage before owner has been assigned.
2147 const char kDeviceSettingsCache[] = "signed_settings_cache"; 2154 const char kDeviceSettingsCache[] = "signed_settings_cache";
(...skipping 524 matching lines...) Expand 10 before | Expand all | Expand 10 after
2672 2679
2673 // The number of seconds since epoch that the OS password was last changed. 2680 // The number of seconds since epoch that the OS password was last changed.
2674 const char kOsPasswordLastChanged[] = 2681 const char kOsPasswordLastChanged[] =
2675 "password_manager.os_password_last_changed"; 2682 "password_manager.os_password_last_changed";
2676 #endif 2683 #endif
2677 2684
2678 // Whether DNS Quick Check is disabled in proxy resolution. 2685 // Whether DNS Quick Check is disabled in proxy resolution.
2679 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; 2686 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled";
2680 2687
2681 } // namespace prefs 2688 } // namespace prefs
OLDNEW
« no previous file with comments | « chrome/common/pref_names.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698