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 361 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
372 const base::Feature kWebNfc{"WebNFC", base::FEATURE_DISABLED_BY_DEFAULT}; | 372 const base::Feature kWebNfc{"WebNFC", base::FEATURE_DISABLED_BY_DEFAULT}; |
373 #endif | 373 #endif |
374 | 374 |
375 #if defined(OS_WIN) | 375 #if defined(OS_WIN) |
376 // Emergency "off switch" for new Windows sandbox security mitigation, | 376 // Emergency "off switch" for new Windows sandbox security mitigation, |
377 // sandbox::MITIGATION_EXTENSION_POINT_DISABLE. | 377 // sandbox::MITIGATION_EXTENSION_POINT_DISABLE. |
378 const base::Feature kWinSboxDisableExtensionPoints{ | 378 const base::Feature kWinSboxDisableExtensionPoints{ |
379 "WinSboxDisableExtensionPoint", base::FEATURE_ENABLED_BY_DEFAULT}; | 379 "WinSboxDisableExtensionPoint", base::FEATURE_ENABLED_BY_DEFAULT}; |
380 #endif | 380 #endif |
381 | 381 |
382 #if defined(OS_MACOSX) | |
383 const base::Feature kMacV2Sandbox{"MacV2Sandbox", | |
Charlie Reis
2017/06/17 20:07:59
Can you document a bit about the V2 sandbox (e.g.,
| |
384 base::FEATURE_DISABLED_BY_DEFAULT}; | |
385 #endif // defined(OS_MACOSX) | |
386 | |
382 } // namespace features | 387 } // namespace features |
OLD | NEW |