| 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 2090 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2101 // A boolean pref that controls the enabled-state of hotword search voice | 2101 // A boolean pref that controls the enabled-state of hotword search voice |
| 2102 // trigger. | 2102 // trigger. |
| 2103 const char kHotwordSearchEnabled[] = "hotword.search_enabled"; | 2103 const char kHotwordSearchEnabled[] = "hotword.search_enabled"; |
| 2104 | 2104 |
| 2105 // An integer pref that keeps track of how many times the opt in popup for | 2105 // An integer pref that keeps track of how many times the opt in popup for |
| 2106 // hotword void search has been shown to the user. After this pref has reached | 2106 // hotword void search has been shown to the user. After this pref has reached |
| 2107 // the maximum number of times as defined by the HotwordService, the popup is no | 2107 // the maximum number of times as defined by the HotwordService, the popup is no |
| 2108 // longer shown. | 2108 // longer shown. |
| 2109 const char kHotwordOptInPopupTimesShown[] = "hotword.opt_in_popup_times_shown"; | 2109 const char kHotwordOptInPopupTimesShown[] = "hotword.opt_in_popup_times_shown"; |
| 2110 | 2110 |
| 2111 #if defined(OS_CHROMEOS) |
| 2112 // A boolean pref that controls the enabled-state of hotword search in the |
| 2113 // app-list. This pref cooperates with kHotwordSearchEnabled. If the user |
| 2114 // explicitly turns off kHotwordSearchEnabled, this pref should go off too. |
| 2115 const char kHotwordAppListEnabled[] = "hotword.app_list_enabled"; |
| 2116 #endif |
| 2117 |
| 2111 #if defined(OS_ANDROID) | 2118 #if defined(OS_ANDROID) |
| 2112 // Boolean that controls the global enabled-state of protected media identifier. | 2119 // Boolean that controls the global enabled-state of protected media identifier. |
| 2113 const char kProtectedMediaIdentifierEnabled[] = | 2120 const char kProtectedMediaIdentifierEnabled[] = |
| 2114 "protected_media_identifier.enabled"; | 2121 "protected_media_identifier.enabled"; |
| 2115 #endif | 2122 #endif |
| 2116 | 2123 |
| 2117 #if defined(OS_CHROMEOS) | 2124 #if defined(OS_CHROMEOS) |
| 2118 // Dictionary for transient storage of settings that should go into device | 2125 // Dictionary for transient storage of settings that should go into device |
| 2119 // settings storage before owner has been assigned. | 2126 // settings storage before owner has been assigned. |
| 2120 const char kDeviceSettingsCache[] = "signed_settings_cache"; | 2127 const char kDeviceSettingsCache[] = "signed_settings_cache"; |
| (...skipping 521 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2642 | 2649 |
| 2643 // The number of seconds since epoch that the OS password was last changed. | 2650 // The number of seconds since epoch that the OS password was last changed. |
| 2644 const char kOsPasswordLastChanged[] = | 2651 const char kOsPasswordLastChanged[] = |
| 2645 "password_manager.os_password_last_changed"; | 2652 "password_manager.os_password_last_changed"; |
| 2646 #endif | 2653 #endif |
| 2647 | 2654 |
| 2648 // Whether DNS Quick Check is disabled in proxy resolution. | 2655 // Whether DNS Quick Check is disabled in proxy resolution. |
| 2649 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2656 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
| 2650 | 2657 |
| 2651 } // namespace prefs | 2658 } // namespace prefs |
| OLD | NEW |