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

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

Issue 2921733002: Add flags for v2 sandbox to Chrome and Helper executable. (Closed)
Patch Set: Address review feedback Created 3 years, 6 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_switches.h" 6 #include "content/public/common/content_switches.h"
7 #include "media/media_features.h" 7 #include "media/media_features.h"
8 8
9 namespace switches { 9 namespace switches {
10 10
(...skipping 1064 matching lines...) Expand 10 before | Expand all | Expand 10 after
1075 1075
1076 #if defined(ENABLE_IPC_FUZZER) 1076 #if defined(ENABLE_IPC_FUZZER)
1077 // Dumps IPC messages sent from renderer processes to the browser process to 1077 // Dumps IPC messages sent from renderer processes to the browser process to
1078 // the given directory. Used primarily to gather samples for IPC fuzzing. 1078 // the given directory. Used primarily to gather samples for IPC fuzzing.
1079 const char kIpcDumpDirectory[] = "ipc-dump-directory"; 1079 const char kIpcDumpDirectory[] = "ipc-dump-directory";
1080 1080
1081 // Specifies the testcase used by the IPC fuzzer. 1081 // Specifies the testcase used by the IPC fuzzer.
1082 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; 1082 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase";
1083 #endif 1083 #endif
1084 1084
1085 #if defined(OS_MACOSX)
1086 // Enable the V2 sandbox during the helper executable initialization.
1087 const char kEnableV2Sandbox[] = "v2-sandbox";
1088 // Indicate that the V2 sandbox has been enabled.
Charlie Reis 2017/06/02 20:50:42 nit: Add blank line before.
Greg K 2017/06/02 23:59:02 Done.
1089 // TODO(kerrnel): Remove this once the V2 sandbox migration is complete.
1090 const char kV2SandboxedEnabled[] = "v2-sandbox-enabled";
1091 #endif // defined(OS_MACOSX)
1092
1085 // Don't dump stuff here, follow the same order as the header. 1093 // Don't dump stuff here, follow the same order as the header.
1086 1094
1087 } // namespace switches 1095 } // namespace switches
OLDNEW
« chrome/app/chrome_exe_main_mac.cc ('K') | « content/public/common/content_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698