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

Unified Diff: content/public/common/sandbox_linux.h

Issue 189093005: Linux Sandbox: show Yama status in about:sandbox (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 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 | « content/common/sandbox_linux/sandbox_linux.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/common/sandbox_linux.h
diff --git a/content/public/common/sandbox_linux.h b/content/public/common/sandbox_linux.h
index 4d2db390759fc2524ed752f198ed95413fdf86e5..a9be3b5470ea5bf3895887bee9847b1e123d813e 100644
--- a/content/public/common/sandbox_linux.h
+++ b/content/public/common/sandbox_linux.h
@@ -23,6 +23,9 @@ enum LinuxSandboxStatus {
// seccomp-bpf sandbox active.
kSandboxLinuxSeccompBPF = 1 << 3,
+ // The Yama LSM module is present and enforcing.
+ kSandboxLinuxYama = 1 << 4,
+
// A flag that denotes an invalid sandbox status.
kSandboxLinuxInvalid = 1 << 31,
};
« no previous file with comments | « content/common/sandbox_linux/sandbox_linux.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698