diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-29 22:05:26 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-29 22:05:26 +0000 |
commit | b7f59e82e6325597b4a13a3f64e0c56d1520a5e6 (patch) | |
tree | 119368c241c931dd9122d3159e9bfc540d577807 /ipc/ipc_sync_channel.cc | |
parent | 5c23e954bbd14f139cc82846d55cd0fba5e1a9de (diff) | |
download | chromium_src-b7f59e82e6325597b4a13a3f64e0c56d1520a5e6.zip chromium_src-b7f59e82e6325597b4a13a3f64e0c56d1520a5e6.tar.gz chromium_src-b7f59e82e6325597b4a13a3f64e0c56d1520a5e6.tar.bz2 |
Remove Message::Sender and Channel::Listener typedefs.
This patch fixes the remaining users to use the new names for these classes.
BUG=
TEST=
Review URL: https://chromiumcodereview.appspot.com/10698057
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@145005 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ipc/ipc_sync_channel.cc')
-rw-r--r-- | ipc/ipc_sync_channel.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ipc/ipc_sync_channel.cc b/ipc/ipc_sync_channel.cc index b9dc2c5..26636e5 100644 --- a/ipc/ipc_sync_channel.cc +++ b/ipc/ipc_sync_channel.cc @@ -223,7 +223,7 @@ base::LazyInstance<base::ThreadLocalPointer<SyncChannel::ReceivedSyncMsgQueue> > LAZY_INSTANCE_INITIALIZER; SyncChannel::SyncContext::SyncContext( - Channel::Listener* listener, + Listener* listener, base::MessageLoopProxy* ipc_thread, WaitableEvent* shutdown_event) : ChannelProxy::Context(listener, ipc_thread), @@ -387,7 +387,7 @@ void SyncChannel::SyncContext::OnWaitableEventSignaled(WaitableEvent* event) { SyncChannel::SyncChannel( const IPC::ChannelHandle& channel_handle, Channel::Mode mode, - Channel::Listener* listener, + Listener* listener, base::MessageLoopProxy* ipc_message_loop, bool create_pipe_now, WaitableEvent* shutdown_event) @@ -398,7 +398,7 @@ SyncChannel::SyncChannel( } SyncChannel::SyncChannel( - Channel::Listener* listener, + Listener* listener, base::MessageLoopProxy* ipc_message_loop, WaitableEvent* shutdown_event) : ChannelProxy(new SyncContext(listener, ipc_message_loop, shutdown_event)), |