summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-11-15 22:22:17 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-11-15 22:22:17 +0000
commit4e07f84dee40a142b7ec4386554662c7c53cc653 (patch)
tree0469ebf83683b21f1abcf8c8b3cbfaf749f4f519
parent37dc24656f243918a8b1311ccdbb6486a4099fbf (diff)
downloadchromium_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
-rw-r--r--chrome/browser/pepper_flash_settings_manager.cc1
-rw-r--r--ipc/ipc_channel_posix.cc5
-rw-r--r--ipc/ipc_channel_reader.cc1
3 files changed, 5 insertions, 2 deletions
diff --git a/chrome/browser/pepper_flash_settings_manager.cc b/chrome/browser/pepper_flash_settings_manager.cc
index 88ef5a3..97fa310 100644
--- a/chrome/browser/pepper_flash_settings_manager.cc
+++ b/chrome/browser/pepper_flash_settings_manager.cc
@@ -23,6 +23,7 @@
#include "content/public/common/content_constants.h"
#include "googleurl/src/gurl.h"
#include "ipc/ipc_channel.h"
+#include "ipc/ipc_listener.h"
#include "ppapi/proxy/ppapi_messages.h"
#include "webkit/plugins/plugin_constants.h"
#include "webkit/plugins/webplugininfo.h"
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"