OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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/chrome_features.h" | 5 #include "chrome/common/chrome_features.h" |
6 | 6 |
7 namespace features { | 7 namespace features { |
8 | 8 |
9 // All features in alphabetical order. | 9 // All features in alphabetical order. |
10 | 10 |
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
137 base::FEATURE_ENABLED_BY_DEFAULT}; | 137 base::FEATURE_ENABLED_BY_DEFAULT}; |
138 | 138 |
139 #if defined(SYZYASAN) | 139 #if defined(SYZYASAN) |
140 // Enable the deferred free mechanism in the syzyasan module, which helps the | 140 // Enable the deferred free mechanism in the syzyasan module, which helps the |
141 // performance by deferring some work on the critical path to a background | 141 // performance by deferring some work on the critical path to a background |
142 // thread. | 142 // thread. |
143 const base::Feature kSyzyasanDeferredFree{"SyzyasanDeferredFree", | 143 const base::Feature kSyzyasanDeferredFree{"SyzyasanDeferredFree", |
144 base::FEATURE_ENABLED_BY_DEFAULT}; | 144 base::FEATURE_ENABLED_BY_DEFAULT}; |
145 #endif | 145 #endif |
146 | 146 |
| 147 // Experiment to use grouped permission infobars which could show and handle |
| 148 // multiple permission requests. |
| 149 const base::Feature kUseGroupedPermissionInfobars{ |
| 150 "UseGroupedPermissionInfobars", base::FEATURE_DISABLED_BY_DEFAULT}; |
| 151 |
147 #if defined(OS_CHROMEOS) | 152 #if defined(OS_CHROMEOS) |
148 // Enables or disables the opt-in IME menu in the language settings page. | 153 // Enables or disables the opt-in IME menu in the language settings page. |
149 const base::Feature kOptInImeMenu{"OptInImeMenu", | 154 const base::Feature kOptInImeMenu{"OptInImeMenu", |
150 base::FEATURE_ENABLED_BY_DEFAULT}; | 155 base::FEATURE_ENABLED_BY_DEFAULT}; |
151 | 156 |
152 // Enables or disables PIN quick unlock settings integration. | 157 // Enables or disables PIN quick unlock settings integration. |
153 const base::Feature kQuickUnlockPin{"QuickUnlockPin", | 158 const base::Feature kQuickUnlockPin{"QuickUnlockPin", |
154 base::FEATURE_DISABLED_BY_DEFAULT}; | 159 base::FEATURE_DISABLED_BY_DEFAULT}; |
155 | 160 |
156 // Enables or disables emoji, handwriting and voice input on opt-in IME menu. | 161 // Enables or disables emoji, handwriting and voice input on opt-in IME menu. |
157 const base::Feature kEHVInputOnImeMenu{"EmojiHandwritingVoiceInput", | 162 const base::Feature kEHVInputOnImeMenu{"EmojiHandwritingVoiceInput", |
158 base::FEATURE_DISABLED_BY_DEFAULT}; | 163 base::FEATURE_DISABLED_BY_DEFAULT}; |
159 #endif // defined(OS_CHROMEOS) | 164 #endif // defined(OS_CHROMEOS) |
160 | 165 |
161 } // namespace features | 166 } // namespace features |
OLD | NEW |