summaryrefslogtreecommitdiffstats
path: root/ipc/ipc_sync_channel.cc
diff options
context:
space:
mode:
Diffstat (limited to 'ipc/ipc_sync_channel.cc')
-rw-r--r--ipc/ipc_sync_channel.cc6
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)),