diff options
Diffstat (limited to 'chromium/base/posix')
-rw-r--r-- | chromium/base/posix/file_descriptor_shuffle.cc | 3 | ||||
-rw-r--r-- | chromium/base/posix/unix_domain_socket.cc | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/chromium/base/posix/file_descriptor_shuffle.cc b/chromium/base/posix/file_descriptor_shuffle.cc index d2fd39a95aa..deaacf07d74 100644 --- a/chromium/base/posix/file_descriptor_shuffle.cc +++ b/chromium/base/posix/file_descriptor_shuffle.cc @@ -8,8 +8,9 @@ #include <stddef.h> #include <ostream> -#include "base/posix/eintr_wrapper.h" +#include "base/check.h" #include "base/logging.h" +#include "base/posix/eintr_wrapper.h" namespace base { diff --git a/chromium/base/posix/unix_domain_socket.cc b/chromium/base/posix/unix_domain_socket.cc index 7c087a53b5c..f1b925e148f 100644 --- a/chromium/base/posix/unix_domain_socket.cc +++ b/chromium/base/posix/unix_domain_socket.cc @@ -15,6 +15,7 @@ #include "base/files/scoped_file.h" #include "base/logging.h" +#include "base/notreached.h" #include "base/pickle.h" #include "base/posix/eintr_wrapper.h" #include "base/stl_util.h" |