| 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 // This file defines all the public base::FeatureList features for the chrome | 5 // This file defines all the public base::FeatureList features for the chrome |
| 6 // module. | 6 // module. |
| 7 | 7 |
| 8 #ifndef CHROME_COMMON_CHROME_FEATURES_H_ | 8 #ifndef CHROME_COMMON_CHROME_FEATURES_H_ |
| 9 #define CHROME_COMMON_CHROME_FEATURES_H_ | 9 #define CHROME_COMMON_CHROME_FEATURES_H_ |
| 10 | 10 |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 extern const base::Feature kSyzyasanDeferredFree; | 170 extern const base::Feature kSyzyasanDeferredFree; |
| 171 #endif | 171 #endif |
| 172 | 172 |
| 173 extern const base::Feature kUseGroupedPermissionInfobars; | 173 extern const base::Feature kUseGroupedPermissionInfobars; |
| 174 | 174 |
| 175 #if defined(OS_CHROMEOS) | 175 #if defined(OS_CHROMEOS) |
| 176 extern const base::Feature kOptInImeMenu; | 176 extern const base::Feature kOptInImeMenu; |
| 177 | 177 |
| 178 extern const base::Feature kQuickUnlockPin; | 178 extern const base::Feature kQuickUnlockPin; |
| 179 | 179 |
| 180 extern const base::Feature kQuickUnlockPinSignin; |
| 181 |
| 180 extern const base::Feature kQuickUnlockFingerprint; | 182 extern const base::Feature kQuickUnlockFingerprint; |
| 181 | 183 |
| 182 extern const base::Feature kEHVInputOnImeMenu; | 184 extern const base::Feature kEHVInputOnImeMenu; |
| 183 | 185 |
| 184 extern const base::Feature kCrosCompUpdates; | 186 extern const base::Feature kCrosCompUpdates; |
| 185 #endif // defined(OS_CHROMEOS) | 187 #endif // defined(OS_CHROMEOS) |
| 186 | 188 |
| 187 bool PrefServiceEnabled(); | 189 bool PrefServiceEnabled(); |
| 188 | 190 |
| 189 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 191 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 190 // alphabetical order, or in one of the ifdefs (also in order in each section). | 192 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 191 | 193 |
| 192 } // namespace features | 194 } // namespace features |
| 193 | 195 |
| 194 #endif // CHROME_COMMON_CHROME_FEATURES_H_ | 196 #endif // CHROME_COMMON_CHROME_FEATURES_H_ |
| OLD | NEW |