| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include <fcntl.h> | 5 #include <fcntl.h> |
| 6 #include <sys/resource.h> | 6 #include <sys/resource.h> |
| 7 #include <sys/stat.h> | 7 #include <sys/stat.h> |
| 8 #include <sys/time.h> | 8 #include <sys/time.h> |
| 9 #include <sys/types.h> | 9 #include <sys/types.h> |
| 10 | 10 |
| 11 #include <limits> | 11 #include <limits> |
| 12 | 12 |
| 13 #include "base/bind.h" | 13 #include "base/bind.h" |
| 14 #include "base/bind_helpers.h" | 14 #include "base/callback_helpers.h" |
| 15 #include "base/command_line.h" | 15 #include "base/command_line.h" |
| 16 #include "base/logging.h" | 16 #include "base/logging.h" |
| 17 #include "base/memory/singleton.h" | 17 #include "base/memory/singleton.h" |
| 18 #include "base/posix/eintr_wrapper.h" | 18 #include "base/posix/eintr_wrapper.h" |
| 19 #include "base/time/time.h" | 19 #include "base/time/time.h" |
| 20 #include "content/common/sandbox_linux.h" | 20 #include "content/common/sandbox_linux.h" |
| 21 #include "content/common/sandbox_seccomp_bpf_linux.h" | 21 #include "content/common/sandbox_seccomp_bpf_linux.h" |
| 22 #include "content/public/common/content_switches.h" | 22 #include "content/public/common/content_switches.h" |
| 23 #include "content/public/common/sandbox_linux.h" | 23 #include "content/public/common/sandbox_linux.h" |
| 24 #include "sandbox/linux/suid/client/setuid_sandbox_client.h" | 24 #include "sandbox/linux/suid/client/setuid_sandbox_client.h" |
| (...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 276 void LinuxSandbox::SealSandbox() { | 276 void LinuxSandbox::SealSandbox() { |
| 277 if (proc_fd_ >= 0) { | 277 if (proc_fd_ >= 0) { |
| 278 int ret = HANDLE_EINTR(close(proc_fd_)); | 278 int ret = HANDLE_EINTR(close(proc_fd_)); |
| 279 CHECK_EQ(0, ret); | 279 CHECK_EQ(0, ret); |
| 280 proc_fd_ = -1; | 280 proc_fd_ = -1; |
| 281 } | 281 } |
| 282 } | 282 } |
| 283 | 283 |
| 284 } // namespace content | 284 } // namespace content |
| 285 | 285 |
| OLD | NEW |