Chromium Code Reviews| Index: chrome/common/chrome_switches.cc |
| diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc |
| index 512cf286b2645d889f2f4b8394b02591e7f77b00..2f5d7a445a7ef6270082a5758cb425a0011dd309 100644 |
| --- a/chrome/common/chrome_switches.cc |
| +++ b/chrome/common/chrome_switches.cc |
| @@ -822,6 +822,9 @@ const char kNoExperiments[] = "no-experiments"; |
| // you're for some reason tempted to pass them both. |
| const char kNoFirstRun[] = "no-first-run"; |
| +// Runs just the GPU process outside the sandbox. |
|
jeremy
2010/12/02 08:33:56
How about:
Don't Sandbox the GPU process, does not
|
| +const char kNoGpuSandbox[] = "no-gpu-sandbox"; |
| + |
| // Support a separate switch that enables the v8 playback extension. |
| // The extension causes javascript calls to Date.now() and Math.random() |
| // to return consistent values, such that subsequent loads of the same |
| @@ -839,7 +842,7 @@ const char kNoProxyServer[] = "no-proxy-server"; |
| // Don't send HTTP-Referer headers. |
| const char kNoReferrers[] = "no-referrers"; |
| -// Runs the renderer outside the sandbox. |
| +// Disables the sandbox for all process types that are normally sandboxed. |
| const char kNoSandbox[] = "no-sandbox"; |
| // Does not automatically open a browser window on startup (used when launching |