Index: ipc/attachment_broker_privileged_win.cc |
diff --git a/ipc/attachment_broker_privileged_win.cc b/ipc/attachment_broker_privileged_win.cc |
index 5344e20b82650dddd5bf2027467d9c32cbd5a19d..77584cff1bd3380ce1fa7edccfd36c53edab7812 100644 |
--- a/ipc/attachment_broker_privileged_win.cc |
+++ b/ipc/attachment_broker_privileged_win.cc |
@@ -75,8 +75,8 @@ void AttachmentBrokerPrivilegedWin::RouteDuplicatedHandle( |
// Another process is the destination. |
base::ProcessId dest = wire_format.destination_process; |
- Channel* channel = GetChannelWithProcessId(dest); |
- if (!channel) { |
+ Sender* sender = GetSenderWithProcessId(dest); |
+ if (!sender) { |
// Assuming that this message was not sent from a malicious process, the |
// channel endpoint that would have received this message will block |
// forever. |
@@ -85,8 +85,7 @@ void AttachmentBrokerPrivilegedWin::RouteDuplicatedHandle( |
return; |
} |
- channel->Send( |
- new AttachmentBrokerMsg_WinHandleHasBeenDuplicated(wire_format)); |
+ sender->Send(new AttachmentBrokerMsg_WinHandleHasBeenDuplicated(wire_format)); |
} |
AttachmentBrokerPrivilegedWin::HandleWireFormat |