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

Unified Diff: remoting/host/security_key/fake_security_key_ipc_server.cc

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/fake_security_key_ipc_server.cc
diff --git a/remoting/host/security_key/fake_security_key_ipc_server.cc b/remoting/host/security_key/fake_security_key_ipc_server.cc
index ea23826e163897a823fed0ea8acdab3166fe5bf5..79ac5ed828609fe00f8ea56e3753ade2d3f08f55 100644
--- a/remoting/host/security_key/fake_security_key_ipc_server.cc
+++ b/remoting/host/security_key/fake_security_key_ipc_server.cc
@@ -22,7 +22,7 @@ namespace remoting {
FakeSecurityKeyIpcServer::FakeSecurityKeyIpcServer(
int connection_id,
- uint32_t peer_session_id,
+ ClientSessionDetails* client_session_details,
base::TimeDelta initial_connect_timeout,
const SecurityKeyAuthHandler::SendMessageCallback& send_message_callback,
const base::Closure& channel_closed_callback)
@@ -98,12 +98,12 @@ FakeSecurityKeyIpcServerFactory::~FakeSecurityKeyIpcServerFactory() {
std::unique_ptr<SecurityKeyIpcServer> FakeSecurityKeyIpcServerFactory::Create(
int connection_id,
- uint32_t peer_session_id,
+ ClientSessionDetails* client_session_details,
base::TimeDelta initial_connect_timeout,
const SecurityKeyAuthHandler::SendMessageCallback& send_message_callback,
const base::Closure& done_callback) {
std::unique_ptr<FakeSecurityKeyIpcServer> fake_ipc_server(
- new FakeSecurityKeyIpcServer(connection_id, peer_session_id,
+ new FakeSecurityKeyIpcServer(connection_id, client_session_details,
initial_connect_timeout,
send_message_callback, done_callback));
« no previous file with comments | « remoting/host/security_key/fake_security_key_ipc_server.h ('k') | remoting/host/security_key/security_key_auth_handler_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698