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 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
165 extern const base::Feature kSafeSearchUrlReporting; | 165 extern const base::Feature kSafeSearchUrlReporting; |
166 | 166 |
167 extern const base::Feature kSimplifiedFullscreenUI; | 167 extern const base::Feature kSimplifiedFullscreenUI; |
168 | 168 |
169 #if defined(SYZYASAN) | 169 #if defined(SYZYASAN) |
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 extern const base::Feature kUsePermissionManagerForMediaRequests; |
| 176 |
175 #if defined(OS_CHROMEOS) | 177 #if defined(OS_CHROMEOS) |
176 extern const base::Feature kOptInImeMenu; | 178 extern const base::Feature kOptInImeMenu; |
177 | 179 |
178 extern const base::Feature kQuickUnlockPin; | 180 extern const base::Feature kQuickUnlockPin; |
179 | 181 |
180 extern const base::Feature kQuickUnlockPinSignin; | 182 extern const base::Feature kQuickUnlockPinSignin; |
181 | 183 |
182 extern const base::Feature kQuickUnlockFingerprint; | 184 extern const base::Feature kQuickUnlockFingerprint; |
183 | 185 |
184 extern const base::Feature kEHVInputOnImeMenu; | 186 extern const base::Feature kEHVInputOnImeMenu; |
185 | 187 |
186 extern const base::Feature kCrosCompUpdates; | 188 extern const base::Feature kCrosCompUpdates; |
187 #endif // defined(OS_CHROMEOS) | 189 #endif // defined(OS_CHROMEOS) |
188 | 190 |
189 bool PrefServiceEnabled(); | 191 bool PrefServiceEnabled(); |
190 | 192 |
191 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 193 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
192 // alphabetical order, or in one of the ifdefs (also in order in each section). | 194 // alphabetical order, or in one of the ifdefs (also in order in each section). |
193 | 195 |
194 } // namespace features | 196 } // namespace features |
195 | 197 |
196 #endif // CHROME_COMMON_CHROME_FEATURES_H_ | 198 #endif // CHROME_COMMON_CHROME_FEATURES_H_ |
OLD | NEW |