Index: content/common/sandbox_seccomp_bpf_linux.cc |
diff --git a/content/common/sandbox_seccomp_bpf_linux.cc b/content/common/sandbox_seccomp_bpf_linux.cc |
index 05eb71dd23a86ab95d253185b6936f5caed4303c..a9342aea2355a631a883c4eedfcf003cfb0f9fb4 100644 |
--- a/content/common/sandbox_seccomp_bpf_linux.cc |
+++ b/content/common/sandbox_seccomp_bpf_linux.cc |
@@ -1408,16 +1408,11 @@ bool SandboxSeccompBpf::IsSeccompBpfDesired() { |
bool SandboxSeccompBpf::ShouldEnableSeccompBpf( |
const std::string& process_type) { |
#if defined(SECCOMP_BPF_SANDBOX) |
-#if defined(__arm__) |
- // We disable the sandbox on ARM for now until crbug.com/148856 is fixed. |
- return false; |
-#else |
const CommandLine& command_line = *CommandLine::ForCurrentProcess(); |
if (process_type == switches::kGpuProcess) |
return !command_line.HasSwitch(switches::kDisableGpuSandbox); |
return true; |
-#endif // __arm__ |
#endif // SECCOMP_BPF_SANDBOX |
return false; |
} |