summaryrefslogtreecommitdiffstats
path: root/content/common
diff options
context:
space:
mode:
authorapatrick@chromium.org <apatrick@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-25 00:07:12 +0000
committerapatrick@chromium.org <apatrick@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-25 00:07:12 +0000
commit0f46f8115f6b5baf16e602e006d5c1ffa7f08482 (patch)
treeb78049397e4ffbf546dcd1860028a4fd2b7dbd30 /content/common
parentaf802415dec0d6dd15e17ba58d0357d5249f5cfb (diff)
downloadchromium_src-0f46f8115f6b5baf16e602e006d5c1ffa7f08482.zip
chromium_src-0f46f8115f6b5baf16e602e006d5c1ffa7f08482.tar.gz
chromium_src-0f46f8115f6b5baf16e602e006d5c1ffa7f08482.tar.bz2
Removed --no-gpu-sandbox.
It now uses --disable-gpu-sandbox on all platforms. The confusion arose because I didn't know that --no-gpu-sandbox existed when I enabled the sandbox on windows. TEST=try BUG=none R=darin@chromium.org,brettw@chromium.org,jam@chromium.org,ben@chromium.org Review URL: http://codereview.chromium.org/6731029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79348 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/common')
-rw-r--r--content/common/content_switches.cc3
-rw-r--r--content/common/content_switches.h1
2 files changed, 0 insertions, 4 deletions
diff --git a/content/common/content_switches.cc b/content/common/content_switches.cc
index 76ce3bd..be9a3f0 100644
--- a/content/common/content_switches.cc
+++ b/content/common/content_switches.cc
@@ -142,9 +142,6 @@ const char kLogPluginMessages[] = "log-plugin-messages";
// Causes the process to run as a NativeClient loader.
const char kNaClLoaderProcess[] = "nacl-loader";
-// Don't Sandbox the GPU process, does not affect other sandboxed processes.
-const char kNoGpuSandbox[] = "no-gpu-sandbox";
-
// Don't send HTTP-Referer headers.
const char kNoReferrers[] = "no-referrers";
diff --git a/content/common/content_switches.h b/content/common/content_switches.h
index b1d5857..63bf1ab 100644
--- a/content/common/content_switches.h
+++ b/content/common/content_switches.h
@@ -52,7 +52,6 @@ extern const char kLoggingLevel[];
extern const char kLogPluginMessages[];
// TODO(jam): this doesn't belong in content.
extern const char kNaClLoaderProcess[];
-extern const char kNoGpuSandbox[];
extern const char kNoReferrers[];
extern const char kNoSandbox[];
extern const char kPluginLauncher[];