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 #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 Loading... |
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 Loading... |
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 |
OLD | NEW |