| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 content | 5 // This file defines all the public base::FeatureList features for the content |
| 6 // module. | 6 // module. |
| 7 | 7 |
| 8 #ifndef CONTENT_PUBLIC_COMMON_CONTENT_FEATURES_H_ | 8 #ifndef CONTENT_PUBLIC_COMMON_CONTENT_FEATURES_H_ |
| 9 #define CONTENT_PUBLIC_COMMON_CONTENT_FEATURES_H_ | 9 #define CONTENT_PUBLIC_COMMON_CONTENT_FEATURES_H_ |
| 10 | 10 |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 CONTENT_EXPORT extern const base::Feature kWebVRExperimentalRendering; | 74 CONTENT_EXPORT extern const base::Feature kWebVRExperimentalRendering; |
| 75 CONTENT_EXPORT | 75 CONTENT_EXPORT |
| 76 extern const base::Feature kSendBeaconThrowForBlobWithNonSimpleType; | 76 extern const base::Feature kSendBeaconThrowForBlobWithNonSimpleType; |
| 77 | 77 |
| 78 #if defined(OS_ANDROID) | 78 #if defined(OS_ANDROID) |
| 79 CONTENT_EXPORT extern const base::Feature kAndroidAutofillAccessibility; | 79 CONTENT_EXPORT extern const base::Feature kAndroidAutofillAccessibility; |
| 80 CONTENT_EXPORT extern const base::Feature kNativeAndroidHistoryManager; | 80 CONTENT_EXPORT extern const base::Feature kNativeAndroidHistoryManager; |
| 81 CONTENT_EXPORT extern const base::Feature kImeThread; | 81 CONTENT_EXPORT extern const base::Feature kImeThread; |
| 82 CONTENT_EXPORT extern const base::Feature kSeccompSandboxAndroid; | 82 CONTENT_EXPORT extern const base::Feature kSeccompSandboxAndroid; |
| 83 CONTENT_EXPORT extern const base::Feature kServiceWorkerPaymentApps; | 83 CONTENT_EXPORT extern const base::Feature kServiceWorkerPaymentApps; |
| 84 CONTENT_EXPORT extern const base::Feature kWebNfc; |
| 84 #endif // defined(OS_ANDROID) | 85 #endif // defined(OS_ANDROID) |
| 85 | 86 |
| 86 #if !defined(OS_ANDROID) | 87 #if !defined(OS_ANDROID) |
| 87 CONTENT_EXPORT extern const base::Feature | 88 CONTENT_EXPORT extern const base::Feature |
| 88 kCrossOriginMediaPlaybackRequiresUserGesture; | 89 kCrossOriginMediaPlaybackRequiresUserGesture; |
| 89 #endif // !defined(OS_ANDROID) | 90 #endif // !defined(OS_ANDROID) |
| 90 | 91 |
| 91 #if defined(OS_WIN) | 92 #if defined(OS_WIN) |
| 92 CONTENT_EXPORT extern const base::Feature kWinSboxDisableExtensionPoints; | 93 CONTENT_EXPORT extern const base::Feature kWinSboxDisableExtensionPoints; |
| 93 #endif // defined(OS_WIN) | 94 #endif // defined(OS_WIN) |
| 94 | 95 |
| 95 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 96 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 96 // alphabetical order, or in one of the ifdefs (also in order in each section). | 97 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 97 | 98 |
| 98 } // namespace features | 99 } // namespace features |
| 99 | 100 |
| 100 #endif // CONTENT_PUBLIC_COMMON_CONTENT_FEATURES_H_ | 101 #endif // CONTENT_PUBLIC_COMMON_CONTENT_FEATURES_H_ |
| OLD | NEW |