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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 // performance by deferring some work on the critical path to a background | 92 // performance by deferring some work on the critical path to a background |
93 // thread. | 93 // thread. |
94 const base::Feature kSyzyasanDeferredFree{"SyzyasanDeferredFree", | 94 const base::Feature kSyzyasanDeferredFree{"SyzyasanDeferredFree", |
95 base::FEATURE_DISABLED_BY_DEFAULT}; | 95 base::FEATURE_DISABLED_BY_DEFAULT}; |
96 #endif | 96 #endif |
97 | 97 |
98 #if defined(OS_CHROMEOS) | 98 #if defined(OS_CHROMEOS) |
99 // Enables or disables the opt-in IME menu in the language settings page. | 99 // Enables or disables the opt-in IME menu in the language settings page. |
100 const base::Feature kOptInImeMenu{"OptInImeMenu", | 100 const base::Feature kOptInImeMenu{"OptInImeMenu", |
101 base::FEATURE_DISABLED_BY_DEFAULT}; | 101 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 102 |
| 103 // Enables or disables PIN quick unlock settings integration. |
| 104 const base::Feature kQuickUnlockPin{"QuickUnlockPin", |
| 105 base::FEATURE_DISABLED_BY_DEFAULT}; |
102 #endif // defined(OS_CHROMEOS) | 106 #endif // defined(OS_CHROMEOS) |
103 | 107 |
104 } // namespace features | 108 } // namespace features |
OLD | NEW |