Index: content/common/child_thread.cc |
diff --git a/content/common/child_thread.cc b/content/common/child_thread.cc |
index 0e69c65aa4afeb6966dbb5298db1cd12af48e345..3f00f93e120f259a43f9d308c7810df563b551a6 100644 |
--- a/content/common/child_thread.cc |
+++ b/content/common/child_thread.cc |
@@ -101,7 +101,7 @@ bool ChildThread::Send(IPC::Message* msg) { |
return channel_->Send(msg); |
} |
-void ChildThread::AddRoute(int32 routing_id, IPC::Channel::Listener* listener) { |
+void ChildThread::AddRoute(int32 routing_id, IPC::Listener* listener) { |
DCHECK(MessageLoop::current() == message_loop()); |
router_.AddRoute(routing_id, listener); |
@@ -113,7 +113,7 @@ void ChildThread::RemoveRoute(int32 routing_id) { |
router_.RemoveRoute(routing_id); |
} |
-IPC::Channel::Listener* ChildThread::ResolveRoute(int32 routing_id) { |
+IPC::Listener* ChildThread::ResolveRoute(int32 routing_id) { |
DCHECK(MessageLoop::current() == message_loop()); |
return router_.ResolveRoute(routing_id); |