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 #include "build/build_config.h" | 5 #include "build/build_config.h" |
6 #include "content/public/common/content_features.h" | 6 #include "content/public/common/content_features.h" |
7 | 7 |
8 namespace features { | 8 namespace features { |
9 | 9 |
10 // All features in alphabetical order. | 10 // All features in alphabetical order. |
(...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
302 const base::Feature kSendBeaconThrowForBlobWithNonSimpleType{ | 302 const base::Feature kSendBeaconThrowForBlobWithNonSimpleType{ |
303 "SendBeaconThrowForBlobWithNonSimpleType", | 303 "SendBeaconThrowForBlobWithNonSimpleType", |
304 base::FEATURE_DISABLED_BY_DEFAULT}; | 304 base::FEATURE_DISABLED_BY_DEFAULT}; |
305 | 305 |
306 #if defined(OS_ANDROID) | 306 #if defined(OS_ANDROID) |
307 // Autofill Accessibility in Android. | 307 // Autofill Accessibility in Android. |
308 // crbug.com/627860 | 308 // crbug.com/627860 |
309 const base::Feature kAndroidAutofillAccessibility{ | 309 const base::Feature kAndroidAutofillAccessibility{ |
310 "AndroidAutofillAccessibility", base::FEATURE_DISABLED_BY_DEFAULT}; | 310 "AndroidAutofillAccessibility", base::FEATURE_DISABLED_BY_DEFAULT}; |
311 | 311 |
312 // A browsing history manager implementation for Android. | |
313 const base::Feature kNativeAndroidHistoryManager{ | |
314 "AndroidHistoryManager", base::FEATURE_DISABLED_BY_DEFAULT}; | |
315 | |
316 // FeatureList definition for the Seccomp field trial. | 312 // FeatureList definition for the Seccomp field trial. |
317 const base::Feature kSeccompSandboxAndroid{"SeccompSandboxAndroid", | 313 const base::Feature kSeccompSandboxAndroid{"SeccompSandboxAndroid", |
318 base::FEATURE_ENABLED_BY_DEFAULT}; | 314 base::FEATURE_ENABLED_BY_DEFAULT}; |
319 | 315 |
320 // Service worker based payment apps as defined by w3c here: | 316 // Service worker based payment apps as defined by w3c here: |
321 // https://w3c.github.io/webpayments-payment-apps-api/ | 317 // https://w3c.github.io/webpayments-payment-apps-api/ |
322 const base::Feature kServiceWorkerPaymentApps{ | 318 const base::Feature kServiceWorkerPaymentApps{ |
323 "ServiceWorkerPaymentApps", | 319 "ServiceWorkerPaymentApps", |
324 base::FEATURE_DISABLED_BY_DEFAULT}; | 320 base::FEATURE_DISABLED_BY_DEFAULT}; |
325 | 321 |
326 // Controls whether the WebNFC API is enabled: | 322 // Controls whether the WebNFC API is enabled: |
327 // https://w3c.github.io/web-nfc/ | 323 // https://w3c.github.io/web-nfc/ |
328 const base::Feature kWebNfc{"WebNFC", base::FEATURE_DISABLED_BY_DEFAULT}; | 324 const base::Feature kWebNfc{"WebNFC", base::FEATURE_DISABLED_BY_DEFAULT}; |
329 #endif | 325 #endif |
330 | 326 |
331 #if defined(OS_WIN) | 327 #if defined(OS_WIN) |
332 // Emergency "off switch" for new Windows sandbox security mitigation, | 328 // Emergency "off switch" for new Windows sandbox security mitigation, |
333 // sandbox::MITIGATION_EXTENSION_POINT_DISABLE. | 329 // sandbox::MITIGATION_EXTENSION_POINT_DISABLE. |
334 const base::Feature kWinSboxDisableExtensionPoints{ | 330 const base::Feature kWinSboxDisableExtensionPoints{ |
335 "WinSboxDisableExtensionPoint", base::FEATURE_ENABLED_BY_DEFAULT}; | 331 "WinSboxDisableExtensionPoint", base::FEATURE_ENABLED_BY_DEFAULT}; |
336 #endif | 332 #endif |
337 | 333 |
338 } // namespace features | 334 } // namespace features |
OLD | NEW |