Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / content / common / sandbox_linux / sandbox_init_linux.cc
blob146b3528b697fbc29af225c0c596f6c8d2e94ea1
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"
12 namespace content {
14 bool InitializeSandbox(scoped_ptr<sandbox::bpf_dsl::Policy> policy,
15 base::ScopedFD proc_fd) {
16 return SandboxSeccompBPF::StartSandboxWithExternalPolicy(policy.Pass(),
17 proc_fd.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