| 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 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 #if BUILDFLAG(ENABLE_PLUGINS) | 169 #if BUILDFLAG(ENABLE_PLUGINS) |
| 170 extern const base::Feature kRunAllFlashInAllowMode; | 170 extern const base::Feature kRunAllFlashInAllowMode; |
| 171 #endif | 171 #endif |
| 172 | 172 |
| 173 extern const base::Feature kSafeSearchUrlReporting; | 173 extern const base::Feature kSafeSearchUrlReporting; |
| 174 | 174 |
| 175 extern const base::Feature kSimplifiedFullscreenUI; | 175 extern const base::Feature kSimplifiedFullscreenUI; |
| 176 | 176 |
| 177 extern const base::Feature kSiteDetails; | 177 extern const base::Feature kSiteDetails; |
| 178 | 178 |
| 179 #if defined(OS_ANDROID) |
| 180 extern const base::Feature kSiteNotificationChannels; |
| 181 #endif |
| 182 |
| 179 #if defined(SYZYASAN) | 183 #if defined(SYZYASAN) |
| 180 extern const base::Feature kSyzyasanDeferredFree; | 184 extern const base::Feature kSyzyasanDeferredFree; |
| 181 #endif | 185 #endif |
| 182 | 186 |
| 183 extern const base::Feature kTabsInCbd; | 187 extern const base::Feature kTabsInCbd; |
| 184 | 188 |
| 185 extern const base::Feature kUseGoogleLocalNtp; | 189 extern const base::Feature kUseGoogleLocalNtp; |
| 186 | 190 |
| 187 extern const base::Feature kUseGroupedPermissionInfobars; | 191 extern const base::Feature kUseGroupedPermissionInfobars; |
| 188 | 192 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 205 #endif // defined(OS_CHROMEOS) | 209 #endif // defined(OS_CHROMEOS) |
| 206 | 210 |
| 207 bool PrefServiceEnabled(); | 211 bool PrefServiceEnabled(); |
| 208 | 212 |
| 209 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 213 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 210 // alphabetical order, or in one of the ifdefs (also in order in each section). | 214 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 211 | 215 |
| 212 } // namespace features | 216 } // namespace features |
| 213 | 217 |
| 214 #endif // CHROME_COMMON_CHROME_FEATURES_H_ | 218 #endif // CHROME_COMMON_CHROME_FEATURES_H_ |
| OLD | NEW |