Commit de79bd9e authored by tfarina's avatar tfarina Committed by Commit bot

Cleanup: Remove basictypes.h includes from seccomp-bpf-helpers.

Tested on Linux with the following command lines:

$ rm -rf out/
$ ./build/gyp_chromium
$ ninja -C out/Debug sandbox_linux_unittests
$ out/Debug/sandbox_linux_unittests

BUG=138542
TEST=see above
R=jln@chromium.org,mdempsky@chromium.org

Review URL: https://codereview.chromium.org/1062223002

Cr-Commit-Position: refs/heads/master@{#324378}
parent 82a08f28
...@@ -9,7 +9,6 @@ ...@@ -9,7 +9,6 @@
#include <sys/syscall.h> #include <sys/syscall.h>
#include <unistd.h> #include <unistd.h>
#include "base/basictypes.h"
#include "base/logging.h" #include "base/logging.h"
#include "base/posix/eintr_wrapper.h" #include "base/posix/eintr_wrapper.h"
#include "build/build_config.h" #include "build/build_config.h"
......
...@@ -5,7 +5,8 @@ ...@@ -5,7 +5,8 @@
#ifndef SANDBOX_LINUX_SECCOMP_BPF_HELPERS_SIGSYS_HANDLERS_H_ #ifndef SANDBOX_LINUX_SECCOMP_BPF_HELPERS_SIGSYS_HANDLERS_H_
#define SANDBOX_LINUX_SECCOMP_BPF_HELPERS_SIGSYS_HANDLERS_H_ #define SANDBOX_LINUX_SECCOMP_BPF_HELPERS_SIGSYS_HANDLERS_H_
#include "base/basictypes.h" #include <stdint.h>
#include "build/build_config.h" #include "build/build_config.h"
#include "sandbox/linux/bpf_dsl/bpf_dsl_forward.h" #include "sandbox/linux/bpf_dsl/bpf_dsl_forward.h"
#include "sandbox/sandbox_export.h" #include "sandbox/sandbox_export.h"
......
...@@ -11,6 +11,7 @@ ...@@ -11,6 +11,7 @@
#include <linux/net.h> #include <linux/net.h>
#include <sched.h> #include <sched.h>
#include <signal.h> #include <signal.h>
#include <stdint.h>
#include <sys/ioctl.h> #include <sys/ioctl.h>
#include <sys/mman.h> #include <sys/mman.h>
#include <sys/prctl.h> #include <sys/prctl.h>
...@@ -21,7 +22,6 @@ ...@@ -21,7 +22,6 @@
#include <time.h> #include <time.h>
#include <unistd.h> #include <unistd.h>
#include "base/basictypes.h"
#include "base/logging.h" #include "base/logging.h"
#include "base/macros.h" #include "base/macros.h"
#include "base/time/time.h" #include "base/time/time.h"
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
#ifndef SANDBOX_LINUX_SECCOMP_BPF_HELPERS_SYSCALL_SETS_H_ #ifndef SANDBOX_LINUX_SECCOMP_BPF_HELPERS_SYSCALL_SETS_H_
#define SANDBOX_LINUX_SECCOMP_BPF_HELPERS_SYSCALL_SETS_H_ #define SANDBOX_LINUX_SECCOMP_BPF_HELPERS_SYSCALL_SETS_H_
#include "base/basictypes.h" #include "base/macros.h"
#include "build/build_config.h" #include "build/build_config.h"
#include "sandbox/sandbox_export.h" #include "sandbox/sandbox_export.h"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment