| 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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 extern const base::Feature kPermissionsBlacklist; | 116 extern const base::Feature kPermissionsBlacklist; |
| 117 | 117 |
| 118 #if defined(OS_WIN) | 118 #if defined(OS_WIN) |
| 119 extern const base::Feature kPostScriptPrinting; | 119 extern const base::Feature kPostScriptPrinting; |
| 120 #endif | 120 #endif |
| 121 | 121 |
| 122 #if BUILDFLAG(ENABLE_PLUGINS) | 122 #if BUILDFLAG(ENABLE_PLUGINS) |
| 123 extern const base::Feature kPreferHtmlOverPlugins; | 123 extern const base::Feature kPreferHtmlOverPlugins; |
| 124 #endif | 124 #endif |
| 125 | 125 |
| 126 extern const base::Feature kPrefService; |
| 127 |
| 126 #if defined(OS_CHROMEOS) | 128 #if defined(OS_CHROMEOS) |
| 127 extern const base::Feature kPreloadLockScreen; | 129 extern const base::Feature kPreloadLockScreen; |
| 128 #endif | 130 #endif |
| 129 | 131 |
| 130 #if BUILDFLAG(ENABLE_PRINT_PREVIEW) | 132 #if BUILDFLAG(ENABLE_PRINT_PREVIEW) |
| 131 extern const base::Feature kPrintPdfAsImage; | 133 extern const base::Feature kPrintPdfAsImage; |
| 132 | 134 |
| 133 extern const base::Feature kPrintScaling; | 135 extern const base::Feature kPrintScaling; |
| 134 #endif | 136 #endif |
| 135 | 137 |
| (...skipping 28 matching lines...) Expand all Loading... |
| 164 | 166 |
| 165 extern const base::Feature kCrosCompUpdates; | 167 extern const base::Feature kCrosCompUpdates; |
| 166 #endif // defined(OS_CHROMEOS) | 168 #endif // defined(OS_CHROMEOS) |
| 167 | 169 |
| 168 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 170 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 169 // alphabetical order, or in one of the ifdefs (also in order in each section). | 171 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 170 | 172 |
| 171 } // namespace features | 173 } // namespace features |
| 172 | 174 |
| 173 #endif // CHROME_COMMON_CHROME_FEATURES_H_ | 175 #endif // CHROME_COMMON_CHROME_FEATURES_H_ |
| OLD | NEW |