summaryrefslogtreecommitdiffstats
path: root/content/common/sandbox_linux.cc
diff options
context:
space:
mode:
Diffstat (limited to 'content/common/sandbox_linux.cc')
-rw-r--r--content/common/sandbox_linux.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/content/common/sandbox_linux.cc b/content/common/sandbox_linux.cc
index d4618e5..6384d22 100644
--- a/content/common/sandbox_linux.cc
+++ b/content/common/sandbox_linux.cc
@@ -39,11 +39,11 @@ void LogSandboxStarted(const std::string& sandbox_name) {
bool IsSeccompLegacyDesired() {
#if defined(SECCOMP_SANDBOX)
#if defined(NDEBUG)
- // Off by default; allow turning on with a switch.
+ // Off by default. Allow turning on with a switch.
return CommandLine::ForCurrentProcess()->HasSwitch(
switches::kEnableSeccompSandbox);
#else
- // On by default; allow turning off with a switch.
+ // On by default. Allow turning off with a switch.
return !CommandLine::ForCurrentProcess()->HasSwitch(
switches::kDisableSeccompSandbox);
#endif // NDEBUG