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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 // Runtime flag that indicates whether this leak detector should be enabled in | 62 // Runtime flag that indicates whether this leak detector should be enabled in |
63 // the current instance of Chrome. | 63 // the current instance of Chrome. |
64 const base::Feature kRuntimeMemoryLeakDetector{ | 64 const base::Feature kRuntimeMemoryLeakDetector{ |
65 "RuntimeMemoryLeakDetector", base::FEATURE_DISABLED_BY_DEFAULT}; | 65 "RuntimeMemoryLeakDetector", base::FEATURE_DISABLED_BY_DEFAULT}; |
66 #endif // defined(OS_CHROMEOS) | 66 #endif // defined(OS_CHROMEOS) |
67 | 67 |
68 const base::Feature kSafeSearchUrlReporting{"SafeSearchUrlReporting", | 68 const base::Feature kSafeSearchUrlReporting{"SafeSearchUrlReporting", |
69 base::FEATURE_DISABLED_BY_DEFAULT}; | 69 base::FEATURE_DISABLED_BY_DEFAULT}; |
70 | 70 |
71 // A new user experience for transitioning into fullscreen and mouse pointer | 71 // A new user experience for transitioning into fullscreen and mouse pointer |
72 // lock states. The name is a misnomer (for historical reasons); affects both | 72 // lock states. |
73 // Views and Android builds. | |
74 const base::Feature kSimplifiedFullscreenUI{"ViewsSimplifiedFullscreenUI", | 73 const base::Feature kSimplifiedFullscreenUI{"ViewsSimplifiedFullscreenUI", |
75 base::FEATURE_ENABLED_BY_DEFAULT}; | 74 base::FEATURE_ENABLED_BY_DEFAULT}; |
76 | 75 |
77 #if defined(SYZYASAN) | 76 #if defined(SYZYASAN) |
78 // Enable the deferred free mechanism in the syzyasan module, which helps the | 77 // Enable the deferred free mechanism in the syzyasan module, which helps the |
79 // performance by deferring some work on the critical path to a background | 78 // performance by deferring some work on the critical path to a background |
80 // thread. | 79 // thread. |
81 const base::Feature kSyzyasanDeferredFree{"SyzyasanDeferredFree", | 80 const base::Feature kSyzyasanDeferredFree{"SyzyasanDeferredFree", |
82 base::FEATURE_DISABLED_BY_DEFAULT}; | 81 base::FEATURE_DISABLED_BY_DEFAULT}; |
83 #endif | 82 #endif |
84 | 83 |
85 #if defined(OS_CHROMEOS) | 84 #if defined(OS_CHROMEOS) |
86 // Enables or disables the opt-in IME menu in the language settings page. | 85 // Enables or disables the opt-in IME menu in the language settings page. |
87 const base::Feature kOptInImeMenu{"OptInImeMenu", | 86 const base::Feature kOptInImeMenu{"OptInImeMenu", |
88 base::FEATURE_DISABLED_BY_DEFAULT}; | 87 base::FEATURE_DISABLED_BY_DEFAULT}; |
89 #endif // defined(OS_CHROMEOS) | 88 #endif // defined(OS_CHROMEOS) |
90 | 89 |
91 } // namespace features | 90 } // namespace features |
OLD | NEW |