summaryrefslogtreecommitdiffstats
path: root/ipc/ipc_sync_channel.h
diff options
context:
space:
mode:
authorbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-06-29 22:05:26 +0000
committerbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-06-29 22:05:26 +0000
commitb7f59e82e6325597b4a13a3f64e0c56d1520a5e6 (patch)
tree119368c241c931dd9122d3159e9bfc540d577807 /ipc/ipc_sync_channel.h
parent5c23e954bbd14f139cc82846d55cd0fba5e1a9de (diff)
downloadchromium_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.h')
-rw-r--r--ipc/ipc_sync_channel.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ipc/ipc_sync_channel.h b/ipc/ipc_sync_channel.h
index 3157279..c6ebde1 100644
--- a/ipc/ipc_sync_channel.h
+++ b/ipc/ipc_sync_channel.h
@@ -70,7 +70,7 @@ class IPC_EXPORT SyncChannel : public ChannelProxy,
// the channel will be initialized synchronously.
SyncChannel(const IPC::ChannelHandle& channel_handle,
Channel::Mode mode,
- Channel::Listener* listener,
+ Listener* listener,
base::MessageLoopProxy* ipc_message_loop,
bool create_pipe_now,
base::WaitableEvent* shutdown_event);
@@ -78,7 +78,7 @@ class IPC_EXPORT SyncChannel : public ChannelProxy,
// Creates an uninitialized sync channel. Call ChannelProxy::Init to
// initialize the channel. This two-step setup allows message filters to be
// added before any messages are sent or received.
- SyncChannel(Channel::Listener* listener,
+ SyncChannel(Listener* listener,
base::MessageLoopProxy* ipc_message_loop,
base::WaitableEvent* shutdown_event);
@@ -119,7 +119,7 @@ class IPC_EXPORT SyncChannel : public ChannelProxy,
class SyncContext : public Context,
public base::WaitableEventWatcher::Delegate {
public:
- SyncContext(Channel::Listener* listener,
+ SyncContext(Listener* listener,
base::MessageLoopProxy* ipc_thread,
base::WaitableEvent* shutdown_event);