| 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 30 matching lines...) Expand all Loading... |
| 41 "ViewsSimplifiedFullscreenUI", | 41 "ViewsSimplifiedFullscreenUI", |
| 42 #if defined(USE_AURA) | 42 #if defined(USE_AURA) |
| 43 // Windows, Linux, Chrome OS. | 43 // Windows, Linux, Chrome OS. |
| 44 base::FEATURE_ENABLED_BY_DEFAULT, | 44 base::FEATURE_ENABLED_BY_DEFAULT, |
| 45 #else | 45 #else |
| 46 // Mac, Android. | 46 // Mac, Android. |
| 47 base::FEATURE_DISABLED_BY_DEFAULT, | 47 base::FEATURE_DISABLED_BY_DEFAULT, |
| 48 #endif | 48 #endif |
| 49 }; | 49 }; |
| 50 | 50 |
| 51 #if defined(SYZYASAN) |
| 52 // Enable the deferred free mechanism in the syzyasan module, which helps the |
| 53 // performance by deferring some work on the critical path to a background |
| 54 // thread. |
| 55 const base::Feature kSyzyasanDeferredFree{"SyzyasanDeferredFree", |
| 56 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 57 #endif |
| 58 |
| 51 } // namespace features | 59 } // namespace features |
| OLD | NEW |