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 373 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
384 const base::Feature kWebNfc{"WebNFC", base::FEATURE_DISABLED_BY_DEFAULT}; | 384 const base::Feature kWebNfc{"WebNFC", base::FEATURE_DISABLED_BY_DEFAULT}; |
385 #endif | 385 #endif |
386 | 386 |
387 #if defined(OS_WIN) | 387 #if defined(OS_WIN) |
388 // Emergency "off switch" for new Windows sandbox security mitigation, | 388 // Emergency "off switch" for new Windows sandbox security mitigation, |
389 // sandbox::MITIGATION_EXTENSION_POINT_DISABLE. | 389 // sandbox::MITIGATION_EXTENSION_POINT_DISABLE. |
390 const base::Feature kWinSboxDisableExtensionPoints{ | 390 const base::Feature kWinSboxDisableExtensionPoints{ |
391 "WinSboxDisableExtensionPoint", base::FEATURE_ENABLED_BY_DEFAULT}; | 391 "WinSboxDisableExtensionPoint", base::FEATURE_ENABLED_BY_DEFAULT}; |
392 #endif | 392 #endif |
393 | 393 |
| 394 #if defined(OS_MACOSX) |
| 395 // The V2 sandbox on MacOS removes the unsandboed warmup phase and sandboxes the |
| 396 // entire life of the process. |
| 397 const base::Feature kMacV2Sandbox{"MacV2Sandbox", |
| 398 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 399 #endif // defined(OS_MACOSX) |
| 400 |
394 } // namespace features | 401 } // namespace features |
OLD | NEW |