diff options
Diffstat (limited to 'ipc/ipc_channel_posix.h')
-rw-r--r-- | ipc/ipc_channel_posix.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/ipc/ipc_channel_posix.h b/ipc/ipc_channel_posix.h index c1aaa2b..b66b1fc 100644 --- a/ipc/ipc_channel_posix.h +++ b/ipc/ipc_channel_posix.h @@ -62,10 +62,6 @@ class Channel::ChannelImpl : public MessageLoopForIO::Watcher { bool HasAcceptedConnection() const; bool GetClientEuid(uid_t* client_euid) const; void ResetToAcceptingConnectionState(); -#if defined(OS_LINUX) - void SetNeedsOverridePeerPid(); - void OverridePeerPid(int32 peer_pid); -#endif // defined(OS_LINUX) static bool IsNamedServerInitialized(const std::string& channel_id); private: @@ -151,10 +147,6 @@ class Channel::ChannelImpl : public MessageLoopForIO::Watcher { // True if we are responsible for unlinking the unix domain socket file. bool must_unlink_; - // See IPC::Channel::SetNeedsOverridePeerPid() header comment for details. - bool needs_override_peer_pid_; - int32 override_peer_pid_; - DISALLOW_IMPLICIT_CONSTRUCTORS(ChannelImpl); }; |