| 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 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 base::FEATURE_ENABLED_BY_DEFAULT}; | 156 base::FEATURE_ENABLED_BY_DEFAULT}; |
| 157 | 157 |
| 158 #if defined(SYZYASAN) | 158 #if defined(SYZYASAN) |
| 159 // Enable the deferred free mechanism in the syzyasan module, which helps the | 159 // Enable the deferred free mechanism in the syzyasan module, which helps the |
| 160 // performance by deferring some work on the critical path to a background | 160 // performance by deferring some work on the critical path to a background |
| 161 // thread. | 161 // thread. |
| 162 const base::Feature kSyzyasanDeferredFree{"SyzyasanDeferredFree", | 162 const base::Feature kSyzyasanDeferredFree{"SyzyasanDeferredFree", |
| 163 base::FEATURE_ENABLED_BY_DEFAULT}; | 163 base::FEATURE_ENABLED_BY_DEFAULT}; |
| 164 #endif | 164 #endif |
| 165 | 165 |
| 166 // Experiment to use grouped permission infobars which could show and handle |
| 167 // multiple permission requests. |
| 168 const base::Feature kUseGroupedPermissionInfobars{ |
| 169 "UseGroupedPermissionInfobars", base::FEATURE_DISABLED_BY_DEFAULT}; |
| 170 |
| 166 #if defined(OS_CHROMEOS) | 171 #if defined(OS_CHROMEOS) |
| 167 // Enables or disables the opt-in IME menu in the language settings page. | 172 // Enables or disables the opt-in IME menu in the language settings page. |
| 168 const base::Feature kOptInImeMenu{"OptInImeMenu", | 173 const base::Feature kOptInImeMenu{"OptInImeMenu", |
| 169 base::FEATURE_ENABLED_BY_DEFAULT}; | 174 base::FEATURE_ENABLED_BY_DEFAULT}; |
| 170 | 175 |
| 171 // Enables or disables PIN quick unlock settings integration. | 176 // Enables or disables PIN quick unlock settings integration. |
| 172 const base::Feature kQuickUnlockPin{"QuickUnlockPin", | 177 const base::Feature kQuickUnlockPin{"QuickUnlockPin", |
| 173 base::FEATURE_DISABLED_BY_DEFAULT}; | 178 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 174 | 179 |
| 175 // Enables or disables emoji, handwriting and voice input on opt-in IME menu. | 180 // Enables or disables emoji, handwriting and voice input on opt-in IME menu. |
| 176 const base::Feature kEHVInputOnImeMenu{"EmojiHandwritingVoiceInput", | 181 const base::Feature kEHVInputOnImeMenu{"EmojiHandwritingVoiceInput", |
| 177 base::FEATURE_DISABLED_BY_DEFAULT}; | 182 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 178 #endif // defined(OS_CHROMEOS) | 183 #endif // defined(OS_CHROMEOS) |
| 179 | 184 |
| 180 } // namespace features | 185 } // namespace features |
| OLD | NEW |