summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormostynb <mostynb@opera.com>2015-11-06 16:25:48 -0800
committerCommit bot <commit-bot@chromium.org>2015-11-07 00:26:52 +0000
commit7b4ebfb6696736f87c897ee1f234805609eed99f (patch)
tree63e7dcb0653f4cb85ca2b317030168f87874f5be
parent498c30ec10c16ba90cd425836c5a92ac0d685c36 (diff)
downloadchromium_src-7b4ebfb6696736f87c897ee1f234805609eed99f.zip
chromium_src-7b4ebfb6696736f87c897ee1f234805609eed99f.tar.gz
chromium_src-7b4ebfb6696736f87c897ee1f234805609eed99f.tar.bz2
include what you use: errno.h and string.h in ipc_channel_posix_unittest.cc
Add missing errno.h include for errno and string.h include for strerror. Review URL: https://codereview.chromium.org/1409833013 Cr-Commit-Position: refs/heads/master@{#358467}
-rw-r--r--ipc/ipc_channel_posix_unittest.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/ipc/ipc_channel_posix_unittest.cc b/ipc/ipc_channel_posix_unittest.cc
index 5dc4de4..44c7b37 100644
--- a/ipc/ipc_channel_posix_unittest.cc
+++ b/ipc/ipc_channel_posix_unittest.cc
@@ -6,8 +6,10 @@
#include "ipc/ipc_channel_posix.h"
+#include <errno.h>
#include <fcntl.h>
#include <stdint.h>
+#include <string.h>
#include <sys/socket.h>
#include <sys/un.h>
#include <unistd.h>