| Index: remoting/host/security_key/security_key_ipc_server_impl.h
|
| diff --git a/remoting/host/security_key/security_key_ipc_server_impl.h b/remoting/host/security_key/security_key_ipc_server_impl.h
|
| index d17a6135f5a126ad36e10b9f0c9db27dfbeecc35..489eeb290f33b5fc3846662e6052b055baa1d129 100644
|
| --- a/remoting/host/security_key/security_key_ipc_server_impl.h
|
| +++ b/remoting/host/security_key/security_key_ipc_server_impl.h
|
| @@ -36,7 +36,7 @@ class SecurityKeyIpcServerImpl : public SecurityKeyIpcServer,
|
| public:
|
| SecurityKeyIpcServerImpl(
|
| int connection_id,
|
| - uint32_t peer_session_id,
|
| + ClientSessionDetails* client_session_details,
|
| base::TimeDelta initial_connect_timeout,
|
| const SecurityKeyAuthHandler::SendMessageCallback& message_callback,
|
| const base::Closure& done_callback);
|
| @@ -59,8 +59,8 @@ class SecurityKeyIpcServerImpl : public SecurityKeyIpcServer,
|
| // The value assigned to identify the current IPC channel.
|
| int connection_id_;
|
|
|
| - // The expected session id of the process connecting to the IPC channel.
|
| - uint32_t peer_session_id_;
|
| + // Interface which provides details about the client session.
|
| + ClientSessionDetails* client_session_details_ = nullptr;
|
|
|
| // Tracks whether the connection is in the process of being closed.
|
| bool connection_close_pending_ = false;
|
|
|