Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2797)

Unified Diff: remoting/host/security_key/security_key_ipc_server_impl.h

Issue 2468523003: Pass the desktop session ID to the remoting network process. (Closed)
Patch Set: rebase Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
« no previous file with comments | « remoting/host/security_key/security_key_ipc_server.cc ('k') | remoting/host/security_key/security_key_ipc_server_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698