diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-25 17:03:10 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-25 17:03:10 +0000 |
commit | d84effeba573f3362b2cd297e86e90ec55f99cfc (patch) | |
tree | 57ad855f15ab544aa6bb4b829a13afb825eb951c /content/browser/gpu/gpu_process_host.h | |
parent | 980ad60a008062fa7c9880ad5cdc8790be959afa (diff) | |
download | chromium_src-d84effeba573f3362b2cd297e86e90ec55f99cfc.zip chromium_src-d84effeba573f3362b2cd297e86e90ec55f99cfc.tar.gz chromium_src-d84effeba573f3362b2cd297e86e90ec55f99cfc.tar.bz2 |
Use IPC::Sender and IPC::Listener in content.
This replaces uses of IPC::Message::Sender with IPC::Sender and
IPC::Channel::Listener with IPC::Listener. I also fixed up header files where
it was obvious.
BUG=
TEST=
Review URL: https://chromiumcodereview.appspot.com/10662005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@143920 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/gpu/gpu_process_host.h')
-rw-r--r-- | content/browser/gpu/gpu_process_host.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/content/browser/gpu/gpu_process_host.h b/content/browser/gpu/gpu_process_host.h index e3b5f5c..f4661f4 100644 --- a/content/browser/gpu/gpu_process_host.h +++ b/content/browser/gpu/gpu_process_host.h @@ -19,7 +19,7 @@ #include "content/common/gpu/gpu_process_launch_causes.h" #include "content/public/browser/browser_child_process_host_delegate.h" #include "content/public/common/gpu_info.h" -#include "ipc/ipc_message.h" +#include "ipc/ipc_sender.h" #include "ui/gfx/native_widget_types.h" class GpuMainThread; @@ -35,7 +35,7 @@ struct ChannelHandle; } class GpuProcessHost : public content::BrowserChildProcessHostDelegate, - public IPC::Message::Sender, + public IPC::Sender, public base::NonThreadSafe { public: enum GpuProcessKind { @@ -72,7 +72,7 @@ class GpuProcessHost : public content::BrowserChildProcessHostDelegate, static GpuProcessHost* FromID(int host_id); int host_id() const { return host_id_; } - // IPC::Message::Sender implementation. + // IPC::Sender implementation. virtual bool Send(IPC::Message* msg) OVERRIDE; // Tells the GPU process to create a new channel for communication with a |