From aeaf937b8a02b0a9b1c79e0e2f1d5f407313264c Mon Sep 17 00:00:00 2001 From: "evan@chromium.org" Date: Thu, 18 Feb 2010 15:25:55 +0000 Subject: linux: enable seccomp sandbox by default This is an experiment. Hopefully it will flush out problems. Use --disable-seccomp-sandbox to turn it off. BUG=36133 Review URL: http://codereview.chromium.org/647017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@39358 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/common/chrome_switches.cc | 4 ++-- chrome/common/chrome_switches.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'chrome/common') diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc index 0f41903..76ea9e6 100644 --- a/chrome/common/chrome_switches.cc +++ b/chrome/common/chrome_switches.cc @@ -266,8 +266,8 @@ const char kEnablePrivacyBlacklists[] = "enable-privacy-blacklists"; // http://b/issue?id=1432077 is fixed. const char kEnableRendererAccessibility[] = "enable-renderer-accessibility"; -// Enable the seccomp sandbox (Linux only) -const char kEnableSeccompSandbox[] = "enable-seccomp-sandbox"; +// Disable the seccomp sandbox (Linux only) +const char kDisableSeccompSandbox[] = "disable-seccomp-sandbox"; // Enable session storage. Still buggy. const char kEnableSessionStorage[] = "enable-session-storage"; diff --git a/chrome/common/chrome_switches.h b/chrome/common/chrome_switches.h index e311e1a..7829834 100644 --- a/chrome/common/chrome_switches.h +++ b/chrome/common/chrome_switches.h @@ -93,7 +93,7 @@ extern const char kEnableNaClOnMac[]; extern const char kEnableNewAutoFill[]; extern const char kEnablePrivacyBlacklists[]; extern const char kEnableRendererAccessibility[]; -extern const char kEnableSeccompSandbox[]; +extern const char kDisableSeccompSandbox[]; extern const char kEnableSessionStorage[]; extern const char kEnableStatsTable[]; extern const char kEnableSync[]; -- cgit v1.1