| 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 #include "extensions/features/features.h" | 7 #include "extensions/features/features.h" |
| 8 | 8 |
| 9 namespace features { | 9 namespace features { |
| 10 | 10 |
| (...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 212 const base::Feature kOptInImeMenu{"OptInImeMenu", | 212 const base::Feature kOptInImeMenu{"OptInImeMenu", |
| 213 base::FEATURE_ENABLED_BY_DEFAULT}; | 213 base::FEATURE_ENABLED_BY_DEFAULT}; |
| 214 | 214 |
| 215 // Enables or disables PIN quick unlock settings integration. | 215 // Enables or disables PIN quick unlock settings integration. |
| 216 const base::Feature kQuickUnlockPin{"QuickUnlockPin", | 216 const base::Feature kQuickUnlockPin{"QuickUnlockPin", |
| 217 base::FEATURE_DISABLED_BY_DEFAULT}; | 217 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 218 | 218 |
| 219 // Enables or disables emoji, handwriting and voice input on opt-in IME menu. | 219 // Enables or disables emoji, handwriting and voice input on opt-in IME menu. |
| 220 const base::Feature kEHVInputOnImeMenu{"EmojiHandwritingVoiceInput", | 220 const base::Feature kEHVInputOnImeMenu{"EmojiHandwritingVoiceInput", |
| 221 base::FEATURE_DISABLED_BY_DEFAULT}; | 221 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 222 |
| 223 // Enables or disables flash component updates on Chrome OS. |
| 224 const base::Feature kCrosCompUpdates{"CrosCompUpdates", |
| 225 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 222 #endif // defined(OS_CHROMEOS) | 226 #endif // defined(OS_CHROMEOS) |
| 223 | 227 |
| 224 } // namespace features | 228 } // namespace features |
| OLD | NEW |