Chromium Code Reviews| Index: content/public/common/content_switches.cc |
| diff --git a/content/public/common/content_switches.cc b/content/public/common/content_switches.cc |
| index 2db58beaa2b0a0425b04a8a3192922f2379d6862..b3449ffc8c37f7bb9be8c306591e7957021883ca 100644 |
| --- a/content/public/common/content_switches.cc |
| +++ b/content/public/common/content_switches.cc |
| @@ -666,6 +666,10 @@ const char kNoReferrers[] = "no-referrers"; |
| // Disables the sandbox for all process types that are normally sandboxed. |
| const char kNoSandbox[] = "no-sandbox"; |
| +// Disables the use of a zygote process for forking child processes. Instead, |
| +// child processes will be forked and exec'd directly. |
|
Charlie Reis
2016/10/03 18:46:10
Please mention the --no-sandbox dependency here.
Sami
2016/10/04 10:40:37
Good idea, done.
|
| +const char kNoZygote[] = "no-zygote"; |
| + |
| // Enable or disable appcontainer/lowbox for renderer on Win8+ platforms. |
| const char kEnableAppContainer[] = "enable-appcontainer"; |
| const char kDisableAppContainer[] = "disable-appcontainer"; |