Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(151)

Side by Side Diff: content/public/common/content_features.cc

Issue 1836523004: [Windows Sandbox] MITIGATION_EXTENSION_POINT_DISABLE emergency off finch. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removing some file changes that won't be part of this CL. Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « content/public/common/content_features.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 // Use IME's own thread instead of using main UI thread. It also means that 77 // Use IME's own thread instead of using main UI thread. It also means that
78 // we will not use replica editor and do a round trip to renderer to synchronize 78 // we will not use replica editor and do a round trip to renderer to synchronize
79 // with Blink data. 79 // with Blink data.
80 const base::Feature kImeThread{"ImeThread", base::FEATURE_DISABLED_BY_DEFAULT}; 80 const base::Feature kImeThread{"ImeThread", base::FEATURE_DISABLED_BY_DEFAULT};
81 81
82 // FeatureList definition for the Seccomp field trial. 82 // FeatureList definition for the Seccomp field trial.
83 const base::Feature kSeccompSandboxAndroid{"SeccompSandboxAndroid", 83 const base::Feature kSeccompSandboxAndroid{"SeccompSandboxAndroid",
84 base::FEATURE_DISABLED_BY_DEFAULT}; 84 base::FEATURE_DISABLED_BY_DEFAULT};
85 #endif 85 #endif
86 86
87 #if defined(OS_WIN)
88 // Emergency "off switch" for new Windows sandbox security mitigation,
89 // sandbox::MITIGATION_EXTENSION_POINT_DISABLE.
90 const base::Feature kWinSboxDisableExtensionPoints{
91 "WinSboxDisableExtensionPoint", base::FEATURE_ENABLED_BY_DEFAULT};
92 #endif
93
87 } // namespace features 94 } // namespace features
OLDNEW
« no previous file with comments | « content/public/common/content_features.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698