| 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 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 240 // Experiment to use grouped permission infobars which could show and handle | 240 // Experiment to use grouped permission infobars which could show and handle |
| 241 // multiple permission requests. | 241 // multiple permission requests. |
| 242 const base::Feature kUseGroupedPermissionInfobars{ | 242 const base::Feature kUseGroupedPermissionInfobars{ |
| 243 "UseGroupedPermissionInfobars", base::FEATURE_DISABLED_BY_DEFAULT}; | 243 "UseGroupedPermissionInfobars", base::FEATURE_DISABLED_BY_DEFAULT}; |
| 244 | 244 |
| 245 #if defined(OS_CHROMEOS) | 245 #if defined(OS_CHROMEOS) |
| 246 // Enables or disables the opt-in IME menu in the language settings page. | 246 // Enables or disables the opt-in IME menu in the language settings page. |
| 247 const base::Feature kOptInImeMenu{"OptInImeMenu", | 247 const base::Feature kOptInImeMenu{"OptInImeMenu", |
| 248 base::FEATURE_ENABLED_BY_DEFAULT}; | 248 base::FEATURE_ENABLED_BY_DEFAULT}; |
| 249 | 249 |
| 250 // Enables or disables PIN quick unlock settings integration. | 250 // Enables or disables PIN quick unlock. |
| 251 const base::Feature kQuickUnlockPin{"QuickUnlockPin", | 251 const base::Feature kQuickUnlockPin{"QuickUnlockPin", |
| 252 base::FEATURE_ENABLED_BY_DEFAULT}; | 252 base::FEATURE_ENABLED_BY_DEFAULT}; |
| 253 | 253 |
| 254 // Enables or disables fingerprint quick unlock. |
| 255 const base::Feature kQuickUnlockFingerprint{"QuickUnlockFingerprint", |
| 256 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 257 |
| 254 // Enables or disables emoji, handwriting and voice input on opt-in IME menu. | 258 // Enables or disables emoji, handwriting and voice input on opt-in IME menu. |
| 255 const base::Feature kEHVInputOnImeMenu{"EmojiHandwritingVoiceInput", | 259 const base::Feature kEHVInputOnImeMenu{"EmojiHandwritingVoiceInput", |
| 256 base::FEATURE_ENABLED_BY_DEFAULT}; | 260 base::FEATURE_ENABLED_BY_DEFAULT}; |
| 257 | 261 |
| 258 // Enables or disables flash component updates on Chrome OS. | 262 // Enables or disables flash component updates on Chrome OS. |
| 259 const base::Feature kCrosCompUpdates{"CrosCompUpdates", | 263 const base::Feature kCrosCompUpdates{"CrosCompUpdates", |
| 260 base::FEATURE_ENABLED_BY_DEFAULT}; | 264 base::FEATURE_ENABLED_BY_DEFAULT}; |
| 261 #endif // defined(OS_CHROMEOS) | 265 #endif // defined(OS_CHROMEOS) |
| 262 | 266 |
| 263 } // namespace features | 267 } // namespace features |
| OLD | NEW |