1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "content/public/common/sandbox_init.h"
7 #include "base/files/scoped_file.h"
8 #include "base/memory/scoped_ptr.h"
9 #include "content/common/sandbox_linux/sandbox_seccomp_bpf_linux.h"
10 #include "sandbox/linux/bpf_dsl/policy.h"
14 bool InitializeSandbox(scoped_ptr
<sandbox::bpf_dsl::Policy
> policy
,
15 base::ScopedFD proc_fd
) {
16 return SandboxSeccompBPF::StartSandboxWithExternalPolicy(policy
.Pass(),
20 #if !defined(OS_NACL_NONSFI)
21 scoped_ptr
<sandbox::bpf_dsl::Policy
> GetBPFSandboxBaselinePolicy() {
22 return SandboxSeccompBPF::GetBaselinePolicy().Pass();
24 #endif // !defined(OS_NACL_NONSFI)
26 } // namespace content