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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 #endif | 96 #endif |
97 | 97 |
98 #if defined(OS_MACOSX) | 98 #if defined(OS_MACOSX) |
99 extern const base::Feature kNativeNotifications; | 99 extern const base::Feature kNativeNotifications; |
100 #endif // defined(OS_MACOSX) | 100 #endif // defined(OS_MACOSX) |
101 | 101 |
102 extern const base::Feature kOfflinePageDownloadSuggestionsFeature; | 102 extern const base::Feature kOfflinePageDownloadSuggestionsFeature; |
103 | 103 |
104 extern const base::Feature kOverrideYouTubeFlashEmbed; | 104 extern const base::Feature kOverrideYouTubeFlashEmbed; |
105 | 105 |
106 extern const base::Feature kParallelDownloading; | |
107 | |
108 extern const base::Feature kPermissionsBlacklist; | 106 extern const base::Feature kPermissionsBlacklist; |
109 | 107 |
110 #if BUILDFLAG(ENABLE_PLUGINS) | 108 #if BUILDFLAG(ENABLE_PLUGINS) |
111 extern const base::Feature kPreferHtmlOverPlugins; | 109 extern const base::Feature kPreferHtmlOverPlugins; |
112 #endif | 110 #endif |
113 | 111 |
114 #if defined(OS_CHROMEOS) | 112 #if defined(OS_CHROMEOS) |
115 extern const base::Feature kPreloadLockScreen; | 113 extern const base::Feature kPreloadLockScreen; |
116 #endif | 114 #endif |
117 | 115 |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
150 | 148 |
151 extern const base::Feature kCrosCompUpdates; | 149 extern const base::Feature kCrosCompUpdates; |
152 #endif // defined(OS_CHROMEOS) | 150 #endif // defined(OS_CHROMEOS) |
153 | 151 |
154 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 152 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
155 // alphabetical order, or in one of the ifdefs (also in order in each section). | 153 // alphabetical order, or in one of the ifdefs (also in order in each section). |
156 | 154 |
157 } // namespace features | 155 } // namespace features |
158 | 156 |
159 #endif // CHROME_COMMON_CHROME_FEATURES_H_ | 157 #endif // CHROME_COMMON_CHROME_FEATURES_H_ |
OLD | NEW |