| 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 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 extern const base::Feature kSafeSearchUrlReporting; | 176 extern const base::Feature kSafeSearchUrlReporting; |
| 177 | 177 |
| 178 extern const base::Feature kSimplifiedFullscreenUI; | 178 extern const base::Feature kSimplifiedFullscreenUI; |
| 179 | 179 |
| 180 extern const base::Feature kSiteDetails; | 180 extern const base::Feature kSiteDetails; |
| 181 | 181 |
| 182 #if defined(OS_ANDROID) | 182 #if defined(OS_ANDROID) |
| 183 extern const base::Feature kSiteNotificationChannels; | 183 extern const base::Feature kSiteNotificationChannels; |
| 184 #endif | 184 #endif |
| 185 | 185 |
| 186 extern const base::Feature kStaggeredBackgroundTabOpen; |
| 187 |
| 186 extern const base::Feature kSupervisedUserCreation; | 188 extern const base::Feature kSupervisedUserCreation; |
| 187 | 189 |
| 188 #if defined(SYZYASAN) | 190 #if defined(SYZYASAN) |
| 189 extern const base::Feature kSyzyasanDeferredFree; | 191 extern const base::Feature kSyzyasanDeferredFree; |
| 190 #endif | 192 #endif |
| 191 | 193 |
| 192 extern const base::Feature kTabsInCbd; | 194 extern const base::Feature kTabsInCbd; |
| 193 | 195 |
| 194 extern const base::Feature kUseGoogleLocalNtp; | 196 extern const base::Feature kUseGoogleLocalNtp; |
| 195 | 197 |
| (...skipping 20 matching lines...) Expand all Loading... |
| 216 #endif // defined(OS_CHROMEOS) | 218 #endif // defined(OS_CHROMEOS) |
| 217 | 219 |
| 218 bool PrefServiceEnabled(); | 220 bool PrefServiceEnabled(); |
| 219 | 221 |
| 220 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 222 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 221 // alphabetical order, or in one of the ifdefs (also in order in each section). | 223 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 222 | 224 |
| 223 } // namespace features | 225 } // namespace features |
| 224 | 226 |
| 225 #endif // CHROME_COMMON_CHROME_FEATURES_H_ | 227 #endif // CHROME_COMMON_CHROME_FEATURES_H_ |
| OLD | NEW |