diff options
Diffstat (limited to 'content/public/browser/render_process_host.h')
-rw-r--r-- | content/public/browser/render_process_host.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/content/public/browser/render_process_host.h b/content/public/browser/render_process_host.h index a27e66f..6b128dc 100644 --- a/content/public/browser/render_process_host.h +++ b/content/public/browser/render_process_host.h @@ -11,7 +11,7 @@ #include "base/process_util.h" #include "content/common/content_export.h" #include "ipc/ipc_channel_proxy.h" -#include "ipc/ipc_message.h" +#include "ipc/ipc_sender.h" #include "ui/gfx/native_widget_types.h" #include "ui/surface/transport_dib.h" @@ -32,8 +32,8 @@ namespace content { // Interface that represents the browser side of the browser <-> renderer // communication channel. There will generally be one RenderProcessHost per // renderer process. -class CONTENT_EXPORT RenderProcessHost : public IPC::Message::Sender, - public IPC::Channel::Listener { +class CONTENT_EXPORT RenderProcessHost : public IPC::Sender, + public IPC::Listener { public: typedef IDMap<RenderProcessHost>::iterator iterator; typedef IDMap<RenderWidgetHost>::const_iterator RenderWidgetHostsIterator; |