| 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 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 | 193 |
| 194 const base::Feature kSafeSearchUrlReporting{"SafeSearchUrlReporting", | 194 const base::Feature kSafeSearchUrlReporting{"SafeSearchUrlReporting", |
| 195 base::FEATURE_DISABLED_BY_DEFAULT}; | 195 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 196 | 196 |
| 197 #if !defined(OS_ANDROID) && !defined(OS_IOS) | 197 #if !defined(OS_ANDROID) && !defined(OS_IOS) |
| 198 // Sets the visibility and animation of the security chip. | 198 // Sets the visibility and animation of the security chip. |
| 199 const base::Feature kSecurityChip{"SecurityChip", | 199 const base::Feature kSecurityChip{"SecurityChip", |
| 200 base::FEATURE_DISABLED_BY_DEFAULT}; | 200 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 201 #endif | 201 #endif |
| 202 | 202 |
| 203 #if defined(OS_CHROMEOS) |
| 204 // The lock screen will be preloaded and shared so it is instantly available |
| 205 // when the user locks the Chromebook device. |
| 206 const base::Feature kSharedLockScreen{"SharedLockScreen", |
| 207 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 208 #endif |
| 209 |
| 203 // A new user experience for transitioning into fullscreen and mouse pointer | 210 // A new user experience for transitioning into fullscreen and mouse pointer |
| 204 // lock states. | 211 // lock states. |
| 205 const base::Feature kSimplifiedFullscreenUI{"ViewsSimplifiedFullscreenUI", | 212 const base::Feature kSimplifiedFullscreenUI{"ViewsSimplifiedFullscreenUI", |
| 206 base::FEATURE_ENABLED_BY_DEFAULT}; | 213 base::FEATURE_ENABLED_BY_DEFAULT}; |
| 207 | 214 |
| 208 #if defined(SYZYASAN) | 215 #if defined(SYZYASAN) |
| 209 // Enable the deferred free mechanism in the syzyasan module, which helps the | 216 // Enable the deferred free mechanism in the syzyasan module, which helps the |
| 210 // performance by deferring some work on the critical path to a background | 217 // performance by deferring some work on the critical path to a background |
| 211 // thread. | 218 // thread. |
| 212 const base::Feature kSyzyasanDeferredFree{"SyzyasanDeferredFree", | 219 const base::Feature kSyzyasanDeferredFree{"SyzyasanDeferredFree", |
| (...skipping 13 matching lines...) Expand all Loading... |
| 226 // Enables or disables PIN quick unlock settings integration. | 233 // Enables or disables PIN quick unlock settings integration. |
| 227 const base::Feature kQuickUnlockPin{"QuickUnlockPin", | 234 const base::Feature kQuickUnlockPin{"QuickUnlockPin", |
| 228 base::FEATURE_DISABLED_BY_DEFAULT}; | 235 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 229 | 236 |
| 230 // Enables or disables emoji, handwriting and voice input on opt-in IME menu. | 237 // Enables or disables emoji, handwriting and voice input on opt-in IME menu. |
| 231 const base::Feature kEHVInputOnImeMenu{"EmojiHandwritingVoiceInput", | 238 const base::Feature kEHVInputOnImeMenu{"EmojiHandwritingVoiceInput", |
| 232 base::FEATURE_DISABLED_BY_DEFAULT}; | 239 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 233 #endif // defined(OS_CHROMEOS) | 240 #endif // defined(OS_CHROMEOS) |
| 234 | 241 |
| 235 } // namespace features | 242 } // namespace features |
| OLD | NEW |