| Index: ipc/ipc_channel_proxy.cc
|
| ===================================================================
|
| --- ipc/ipc_channel_proxy.cc (revision 187239)
|
| +++ ipc/ipc_channel_proxy.cc (working copy)
|
| @@ -414,13 +414,13 @@
|
| return channel->TakeClientFileDescriptor();
|
| }
|
|
|
| -bool ChannelProxy::GetPeerEuid(uid_t* peer_euid) const {
|
| +bool ChannelProxy::GetClientEuid(uid_t* client_euid) const {
|
| DCHECK(CalledOnValidThread());
|
|
|
| Channel* channel = context_.get()->channel_.get();
|
| // Channel must have been created first.
|
| DCHECK(channel) << context_.get()->channel_id_;
|
| - return channel->GetPeerEuid(peer_euid);
|
| + return channel->GetClientEuid(client_euid);
|
| }
|
| #endif
|
|
|
|
|