| Index: chrome/common/ipc_channel.h
|
| diff --git a/chrome/common/ipc_channel.h b/chrome/common/ipc_channel.h
|
| index f619508bd100f2417ae6e017122482b47be09f4b..85b35fae5cbd76bc56155e21aeaa2d0bd917f89e 100644
|
| --- a/chrome/common/ipc_channel.h
|
| +++ b/chrome/common/ipc_channel.h
|
| @@ -87,14 +87,13 @@ class Channel : public Message::Sender {
|
|
|
| #if defined(OS_POSIX)
|
| // On POSIX an IPC::Channel wraps a socketpair(), this method returns the
|
| - // FD # for the client end of the socket and the equivalent FD# to use for
|
| - // mapping it into the Child process.
|
| + // FD # for the client end of the socket.
|
| // This method may only be called on the server side of a channel.
|
| //
|
| // If the kTestingChannelID flag is specified on the command line then
|
| // a named FIFO is used as the channel transport mechanism rather than a
|
| - // socketpair() in which case this method returns -1 for both parameters.
|
| - void GetClientFileDescriptorMapping(int *src_fd, int *dest_fd) const;
|
| + // socketpair() in which case this method returns -1.
|
| + int GetClientFileDescriptor() const;
|
| #endif // defined(OS_POSIX)
|
|
|
| private:
|
|
|