| 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 #endif // defined(OS_CHROMEOS) | 71 #endif // defined(OS_CHROMEOS) |
| 72 | 72 |
| 73 const base::Feature kSafeSearchUrlReporting{"SafeSearchUrlReporting", | 73 const base::Feature kSafeSearchUrlReporting{"SafeSearchUrlReporting", |
| 74 base::FEATURE_DISABLED_BY_DEFAULT}; | 74 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 75 | 75 |
| 76 // A new user experience for transitioning into fullscreen and mouse pointer | 76 // A new user experience for transitioning into fullscreen and mouse pointer |
| 77 // lock states. | 77 // lock states. |
| 78 const base::Feature kSimplifiedFullscreenUI{"ViewsSimplifiedFullscreenUI", | 78 const base::Feature kSimplifiedFullscreenUI{"ViewsSimplifiedFullscreenUI", |
| 79 base::FEATURE_ENABLED_BY_DEFAULT}; | 79 base::FEATURE_ENABLED_BY_DEFAULT}; |
| 80 | 80 |
| 81 // Enables or disables the STH component-updater component. |
| 82 const base::Feature kSTHSetComponent{"STHSetComponent", |
| 83 base::FEATURE_ENABLED_BY_DEFAULT}; |
| 84 |
| 81 #if defined(SYZYASAN) | 85 #if defined(SYZYASAN) |
| 82 // Enable the deferred free mechanism in the syzyasan module, which helps the | 86 // Enable the deferred free mechanism in the syzyasan module, which helps the |
| 83 // performance by deferring some work on the critical path to a background | 87 // performance by deferring some work on the critical path to a background |
| 84 // thread. | 88 // thread. |
| 85 const base::Feature kSyzyasanDeferredFree{"SyzyasanDeferredFree", | 89 const base::Feature kSyzyasanDeferredFree{"SyzyasanDeferredFree", |
| 86 base::FEATURE_DISABLED_BY_DEFAULT}; | 90 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 87 #endif | 91 #endif |
| 88 | 92 |
| 89 #if defined(OS_CHROMEOS) | 93 #if defined(OS_CHROMEOS) |
| 90 // Enables or disables the opt-in IME menu in the language settings page. | 94 // Enables or disables the opt-in IME menu in the language settings page. |
| 91 const base::Feature kOptInImeMenu{"OptInImeMenu", | 95 const base::Feature kOptInImeMenu{"OptInImeMenu", |
| 92 base::FEATURE_DISABLED_BY_DEFAULT}; | 96 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 93 #endif // defined(OS_CHROMEOS) | 97 #endif // defined(OS_CHROMEOS) |
| 94 | 98 |
| 95 } // namespace features | 99 } // namespace features |
| OLD | NEW |