From c47317e98d6623ea0e40a2fcf60e13b9bcb03d4e Mon Sep 17 00:00:00 2001 From: "brettw@chromium.org" Date: Wed, 20 Jun 2012 22:35:31 +0000 Subject: 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 --- content/public/browser/render_process_host.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'content/public/browser/render_process_host.h') 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::iterator iterator; typedef IDMap::const_iterator RenderWidgetHostsIterator; -- cgit v1.1