diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-14 20:54:35 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-14 20:54:35 +0000 |
commit | 2025d00c3fa5270a0ea10c9ec7a18cfa69007beb (patch) | |
tree | 34930235824be79a141351d1b40fa4faeef0e2a6 /sandbox | |
parent | a462eb604b7976fc6e264cca846a9c92e34254c5 (diff) | |
download | chromium_src-2025d00c3fa5270a0ea10c9ec7a18cfa69007beb.zip chromium_src-2025d00c3fa5270a0ea10c9ec7a18cfa69007beb.tar.gz chromium_src-2025d00c3fa5270a0ea10c9ec7a18cfa69007beb.tar.bz2 |
Move eintr_wrapper.h from base to base/posix
Review URL: https://codereview.chromium.org/11366229
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@167739 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'sandbox')
-rw-r--r-- | sandbox/linux/seccomp-bpf/sandbox_bpf.h | 2 | ||||
-rw-r--r-- | sandbox/linux/services/libc_urandom_override.cc | 2 | ||||
-rw-r--r-- | sandbox/linux/suid/client/setuid_sandbox_client.cc | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/sandbox/linux/seccomp-bpf/sandbox_bpf.h b/sandbox/linux/seccomp-bpf/sandbox_bpf.h index a50ddb3..16ab1d3 100644 --- a/sandbox/linux/seccomp-bpf/sandbox_bpf.h +++ b/sandbox/linux/seccomp-bpf/sandbox_bpf.h @@ -42,8 +42,8 @@ #ifndef SECCOMP_BPF_STANDALONE #include "base/basictypes.h" -#include "base/eintr_wrapper.h" #include "base/logging.h" +#include "base/posix/eintr_wrapper.h" #endif #if defined(SECCOMP_BPF_VALGRIND_HACKS) diff --git a/sandbox/linux/services/libc_urandom_override.cc b/sandbox/linux/services/libc_urandom_override.cc index ee34045..3f99572 100644 --- a/sandbox/linux/services/libc_urandom_override.cc +++ b/sandbox/linux/services/libc_urandom_override.cc @@ -10,8 +10,8 @@ #include <sys/stat.h> #include <unistd.h> -#include "base/eintr_wrapper.h" #include "base/logging.h" +#include "base/posix/eintr_wrapper.h" #include "base/rand_util.h" // Note: this file is used by the zygote and nacl_helper. diff --git a/sandbox/linux/suid/client/setuid_sandbox_client.cc b/sandbox/linux/suid/client/setuid_sandbox_client.cc index 45d700b..7a174ef 100644 --- a/sandbox/linux/suid/client/setuid_sandbox_client.cc +++ b/sandbox/linux/suid/client/setuid_sandbox_client.cc @@ -6,10 +6,10 @@ #include <sys/wait.h> #include <unistd.h> -#include "base/eintr_wrapper.h" #include "base/environment.h" #include "base/logging.h" #include "base/memory/scoped_ptr.h" +#include "base/posix/eintr_wrapper.h" #include "base/string_number_conversions.h" #include "sandbox/linux/suid/common/sandbox.h" |