diff options
author | tfarina <tfarina@chromium.org> | 2015-04-04 10:54:25 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-04-04 17:54:48 +0000 |
commit | e957b3aaa8fe89f276c26205ce60398ee73791e0 (patch) | |
tree | 18a9a506b9240ce3b85e33492916b491f49b0443 /sandbox | |
parent | 4a7c97ce6afccbc4b45997dad2a1b1c5d65c4c7f (diff) | |
download | chromium_src-e957b3aaa8fe89f276c26205ce60398ee73791e0.zip chromium_src-e957b3aaa8fe89f276c26205ce60398ee73791e0.tar.gz chromium_src-e957b3aaa8fe89f276c26205ce60398ee73791e0.tar.bz2 |
sandbox/linux/syscall_broker: Remove includes of of basictypes.h header.
They were basically including it for DISALLOW macros.
BUG=138542
TEST=sandbox_linux_unittests
R=mdempsky@chromium.org
Review URL: https://codereview.chromium.org/1065503002
Cr-Commit-Position: refs/heads/master@{#323883}
Diffstat (limited to 'sandbox')
-rw-r--r-- | sandbox/linux/syscall_broker/broker_process.h | 2 | ||||
-rw-r--r-- | sandbox/linux/syscall_broker/broker_process_unittest.cc | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/sandbox/linux/syscall_broker/broker_process.h b/sandbox/linux/syscall_broker/broker_process.h index c23ac3c..8a512a0 100644 --- a/sandbox/linux/syscall_broker/broker_process.h +++ b/sandbox/linux/syscall_broker/broker_process.h @@ -8,8 +8,8 @@ #include <string> #include <vector> -#include "base/basictypes.h" #include "base/callback_forward.h" +#include "base/macros.h" #include "base/memory/scoped_ptr.h" #include "base/pickle.h" #include "base/process/process.h" diff --git a/sandbox/linux/syscall_broker/broker_process_unittest.cc b/sandbox/linux/syscall_broker/broker_process_unittest.cc index ee284f2..bd7ef27 100644 --- a/sandbox/linux/syscall_broker/broker_process_unittest.cc +++ b/sandbox/linux/syscall_broker/broker_process_unittest.cc @@ -17,7 +17,6 @@ #include <string> #include <vector> -#include "base/basictypes.h" #include "base/bind.h" #include "base/files/file_util.h" #include "base/files/scoped_file.h" |