diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-15 22:22:17 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-15 22:22:17 +0000 |
commit | 4e07f84dee40a142b7ec4386554662c7c53cc653 (patch) | |
tree | 0469ebf83683b21f1abcf8c8b3cbfaf749f4f519 /ipc | |
parent | 37dc24656f243918a8b1311ccdbb6486a4099fbf (diff) | |
download | chromium_src-4e07f84dee40a142b7ec4386554662c7c53cc653.zip chromium_src-4e07f84dee40a142b7ec4386554662c7c53cc653.tar.gz chromium_src-4e07f84dee40a142b7ec4386554662c7c53cc653.tar.bz2 |
Add missing includes to ipc_listener.h
This is TODO in ipc_channel.h that I'm working on.
TBR=brettw@chromium.org
Review URL: https://chromiumcodereview.appspot.com/11416016
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@168055 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ipc')
-rw-r--r-- | ipc/ipc_channel_posix.cc | 5 | ||||
-rw-r--r-- | ipc/ipc_channel_reader.cc | 1 |
2 files changed, 4 insertions, 2 deletions
diff --git a/ipc/ipc_channel_posix.cc b/ipc/ipc_channel_posix.cc index fc15881..10695f8 100644 --- a/ipc/ipc_channel_posix.cc +++ b/ipc/ipc_channel_posix.cc @@ -34,11 +34,12 @@ #include "base/stl_util.h" #include "base/string_util.h" #include "base/synchronization/lock.h" -#include "ipc/ipc_descriptors.h" -#include "ipc/ipc_switches.h" #include "ipc/file_descriptor_set_posix.h" +#include "ipc/ipc_descriptors.h" +#include "ipc/ipc_listener.h" #include "ipc/ipc_logging.h" #include "ipc/ipc_message_utils.h" +#include "ipc/ipc_switches.h" namespace IPC { diff --git a/ipc/ipc_channel_reader.cc b/ipc/ipc_channel_reader.cc index 2f291a9..4c3a86b 100644 --- a/ipc/ipc_channel_reader.cc +++ b/ipc/ipc_channel_reader.cc @@ -4,6 +4,7 @@ #include "ipc/ipc_channel_reader.h" +#include "ipc/ipc_listener.h" #include "ipc/ipc_logging.h" #include "ipc/ipc_message_macros.h" |