diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-20 22:35:31 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-20 22:35:31 +0000 |
commit | c47317e98d6623ea0e40a2fcf60e13b9bcb03d4e (patch) | |
tree | 0b5b672655adda0cea63afa6c1b19e65157db433 /content/public/browser/render_process_host.h | |
parent | 124f78b393c367c5f86b5d90cfee37f4dd1bfa8e (diff) | |
download | chromium_src-c47317e98d6623ea0e40a2fcf60e13b9bcb03d4e.zip chromium_src-c47317e98d6623ea0e40a2fcf60e13b9bcb03d4e.tar.gz chromium_src-c47317e98d6623ea0e40a2fcf60e13b9bcb03d4e.tar.bz2 |
Rename IPC Sender and Listener in ppapi, content/public, and content/renderer
This is the new name in preparation for deleting the backwards-compatible typedef.
BUG=
TEST=
Review URL: https://chromiumcodereview.appspot.com/10532162
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@143282 0039d316-1c4b-4281-b951-d872f2087c98
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; |