| 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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 | 93 |
| 94 extern const base::Feature kOverrideYouTubeFlashEmbed; | 94 extern const base::Feature kOverrideYouTubeFlashEmbed; |
| 95 | 95 |
| 96 extern const base::Feature kPermissionsBlacklist; | 96 extern const base::Feature kPermissionsBlacklist; |
| 97 | 97 |
| 98 #if BUILDFLAG(ENABLE_PLUGINS) | 98 #if BUILDFLAG(ENABLE_PLUGINS) |
| 99 extern const base::Feature kPreferHtmlOverPlugins; | 99 extern const base::Feature kPreferHtmlOverPlugins; |
| 100 #endif | 100 #endif |
| 101 | 101 |
| 102 #if BUILDFLAG(ENABLE_PRINT_PREVIEW) | 102 #if BUILDFLAG(ENABLE_PRINT_PREVIEW) |
| 103 extern const base::Feature kPrintPdfAsImage; |
| 104 |
| 103 extern const base::Feature kPrintScaling; | 105 extern const base::Feature kPrintScaling; |
| 104 #endif | 106 #endif |
| 105 | 107 |
| 106 extern const base::Feature kPushMessagingBackgroundMode; | 108 extern const base::Feature kPushMessagingBackgroundMode; |
| 107 | 109 |
| 108 #if defined(OS_CHROMEOS) | 110 #if defined(OS_CHROMEOS) |
| 109 extern const base::Feature kRuntimeMemoryLeakDetector; | 111 extern const base::Feature kRuntimeMemoryLeakDetector; |
| 110 #endif // defined(OS_CHROMEOS) | 112 #endif // defined(OS_CHROMEOS) |
| 111 | 113 |
| 112 #if BUILDFLAG(ENABLE_PLUGINS) | 114 #if BUILDFLAG(ENABLE_PLUGINS) |
| (...skipping 23 matching lines...) Expand all Loading... |
| 136 | 138 |
| 137 extern const base::Feature kCrosCompUpdates; | 139 extern const base::Feature kCrosCompUpdates; |
| 138 #endif // defined(OS_CHROMEOS) | 140 #endif // defined(OS_CHROMEOS) |
| 139 | 141 |
| 140 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 142 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 141 // alphabetical order, or in one of the ifdefs (also in order in each section). | 143 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 142 | 144 |
| 143 } // namespace features | 145 } // namespace features |
| 144 | 146 |
| 145 #endif // CHROME_COMMON_CHROME_FEATURES_H_ | 147 #endif // CHROME_COMMON_CHROME_FEATURES_H_ |
| OLD | NEW |