diff options
author | jhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-29 02:24:28 +0000 |
---|---|---|
committer | jhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-29 02:24:28 +0000 |
commit | b53225088747643b4ef35bc4e10e2622ec63ce30 (patch) | |
tree | 9a9714078420fef884baf776882fa503c5e58103 /ipc/ipc_channel_proxy.h | |
parent | 3f2efe60bb9d1829f6ba2f09b8752581b9b6b481 (diff) | |
download | chromium_src-b53225088747643b4ef35bc4e10e2622ec63ce30.zip chromium_src-b53225088747643b4ef35bc4e10e2622ec63ce30.tar.gz chromium_src-b53225088747643b4ef35bc4e10e2622ec63ce30.tar.bz2 |
base::Bind: Convert IPC::SendTask.
BUG=none
TEST=none
R=groby@chromium.org
Review URL: http://codereview.chromium.org/8714003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111837 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ipc/ipc_channel_proxy.h')
-rw-r--r-- | ipc/ipc_channel_proxy.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ipc/ipc_channel_proxy.h b/ipc/ipc_channel_proxy.h index ea951fe..49d237e 100644 --- a/ipc/ipc_channel_proxy.h +++ b/ipc/ipc_channel_proxy.h @@ -17,7 +17,7 @@ namespace IPC { -class SendTask; +class SendCallbackHelper; //----------------------------------------------------------------------------- // IPC::ChannelProxy @@ -222,7 +222,7 @@ class IPC_EXPORT ChannelProxy : public Message::Sender { private: friend class ChannelProxy; - friend class SendTask; + friend class SendCallbackHelper; // Create the Channel void CreateChannel(const IPC::ChannelHandle& channel_handle, @@ -263,7 +263,7 @@ class IPC_EXPORT ChannelProxy : public Message::Sender { } private: - friend class SendTask; + friend class SendCallbackHelper; // By maintaining this indirection (ref-counted) to our internal state, we // can safely be destroyed while the background thread continues to do stuff |