Index: content/public/common/sandbox_linux.h |
diff --git a/content/public/common/sandbox_linux.h b/content/public/common/sandbox_linux.h |
index 12ea20cd0d6a78648d9e1f0259a6767844d25523..ac634333358179668eb1ff6dce3a218d05e484fb 100644 |
--- a/content/public/common/sandbox_linux.h |
+++ b/content/public/common/sandbox_linux.h |
@@ -21,7 +21,10 @@ enum LinuxSandboxStatus { |
kSandboxLinuxNetNS = 1 << 2, |
// seccomp-legacy sandbox active. |
- kSandboxLinuxSeccomp = 1 << 3, |
+ kSandboxLinuxSeccompLegacy = 1 << 3, |
+ |
+ // seccomp-bpf sandbox active. |
+ kSandboxLinuxSeccompBpf = 1 << 4, |
}; |
} // namespace content |