| 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 #include "ppapi/features/features.h" | 8 #include "ppapi/features/features.h" |
| 9 | 9 |
| 10 namespace features { | 10 namespace features { |
| (...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 223 const base::Feature kOptInImeMenu{"OptInImeMenu", | 223 const base::Feature kOptInImeMenu{"OptInImeMenu", |
| 224 base::FEATURE_ENABLED_BY_DEFAULT}; | 224 base::FEATURE_ENABLED_BY_DEFAULT}; |
| 225 | 225 |
| 226 // Enables or disables PIN quick unlock settings integration. | 226 // Enables or disables PIN quick unlock settings integration. |
| 227 const base::Feature kQuickUnlockPin{"QuickUnlockPin", | 227 const base::Feature kQuickUnlockPin{"QuickUnlockPin", |
| 228 base::FEATURE_DISABLED_BY_DEFAULT}; | 228 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 229 | 229 |
| 230 // Enables or disables emoji, handwriting and voice input on opt-in IME menu. | 230 // Enables or disables emoji, handwriting and voice input on opt-in IME menu. |
| 231 const base::Feature kEHVInputOnImeMenu{"EmojiHandwritingVoiceInput", | 231 const base::Feature kEHVInputOnImeMenu{"EmojiHandwritingVoiceInput", |
| 232 base::FEATURE_DISABLED_BY_DEFAULT}; | 232 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 233 | |
| 234 // Enables or disables flash component updates on Chrome OS. | |
| 235 const base::Feature kCrosCompUpdates{"CrosCompUpdates", | |
| 236 base::FEATURE_DISABLED_BY_DEFAULT}; | |
| 237 | |
| 238 // Enable or disable using only the component flash plugin on Chrome OS. | |
| 239 const base::Feature kComponentFlashOnly{"ComponentFlashOnly", | |
| 240 base::FEATURE_DISABLED_BY_DEFAULT}; | |
| 241 #endif // defined(OS_CHROMEOS) | 233 #endif // defined(OS_CHROMEOS) |
| 242 | 234 |
| 243 } // namespace features | 235 } // namespace features |
| OLD | NEW |