Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(578)

Unified Diff: content/browser/zygote_main_linux.cc

Issue 7570002: linux: turn seccomp on by default in debug (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | content/common/seccomp_sandbox.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/zygote_main_linux.cc
diff --git a/content/browser/zygote_main_linux.cc b/content/browser/zygote_main_linux.cc
index 2f156ed28a155bb289c639d59dc5f7352c172b18..55254f75b80aa5022379ced375c0f72720bc19fc 100644
--- a/content/browser/zygote_main_linux.cc
+++ b/content/browser/zygote_main_linux.cc
@@ -799,7 +799,10 @@ bool ZygoteMain(const MainFunctionParams& params,
"Seccomp sandbox. Running renderers with Seccomp "
"sandboxing disabled.";
} else {
- LOG(WARNING) << "Enabling experimental Seccomp sandbox.";
+ // TODO(evan): switch to VLOG once we shake out all the sandbox bugs.
+ LOG(WARNING) << "Enabling experimental Seccomp sandbox; if you encounter "
+ << "any problems, please try running with "
+ << "--disable-seccomp-sandbox and file bugs.";
sandbox_flags |= ZygoteHost::kSandboxSeccomp;
}
}
« no previous file with comments | « no previous file | content/common/seccomp_sandbox.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698