| 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 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 | 128 |
| 129 #if BUILDFLAG(ENABLE_NATIVE_NOTIFICATIONS) | 129 #if BUILDFLAG(ENABLE_NATIVE_NOTIFICATIONS) |
| 130 extern const base::Feature kNativeNotifications; | 130 extern const base::Feature kNativeNotifications; |
| 131 #endif | 131 #endif |
| 132 | 132 |
| 133 extern const base::Feature kOfflinePageDownloadSuggestionsFeature; | 133 extern const base::Feature kOfflinePageDownloadSuggestionsFeature; |
| 134 | 134 |
| 135 extern const base::Feature kPermissionsBlacklist; | 135 extern const base::Feature kPermissionsBlacklist; |
| 136 | 136 |
| 137 #if defined(OS_WIN) | 137 #if defined(OS_WIN) |
| 138 extern const base::Feature kPostScriptPrinting; | 138 extern const base::Feature kDisablePostScriptPrinting; |
| 139 #endif | 139 #endif |
| 140 | 140 |
| 141 #if BUILDFLAG(ENABLE_PLUGINS) | 141 #if BUILDFLAG(ENABLE_PLUGINS) |
| 142 extern const base::Feature kPreferHtmlOverPlugins; | 142 extern const base::Feature kPreferHtmlOverPlugins; |
| 143 #endif | 143 #endif |
| 144 | 144 |
| 145 extern const base::Feature kPrefService; | 145 extern const base::Feature kPrefService; |
| 146 | 146 |
| 147 #if defined(OS_CHROMEOS) | 147 #if defined(OS_CHROMEOS) |
| 148 extern const base::Feature kPreloadLockScreen; | 148 extern const base::Feature kPreloadLockScreen; |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 187 #endif // defined(OS_CHROMEOS) | 187 #endif // defined(OS_CHROMEOS) |
| 188 | 188 |
| 189 bool PrefServiceEnabled(); | 189 bool PrefServiceEnabled(); |
| 190 | 190 |
| 191 // 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 |
| 192 // 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). |
| 193 | 193 |
| 194 } // namespace features | 194 } // namespace features |
| 195 | 195 |
| 196 #endif // CHROME_COMMON_CHROME_FEATURES_H_ | 196 #endif // CHROME_COMMON_CHROME_FEATURES_H_ |
| OLD | NEW |