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

Unified Diff: remoting/host/security_key/security_key_ipc_server.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.h
diff --git a/remoting/host/security_key/security_key_ipc_server.h b/remoting/host/security_key/security_key_ipc_server.h
index be7d99d8fbcced8af4bb56df07bbfce89da6be2c..d1ad72a06e885a7b58f17915f8977d48f62056bd 100644
--- a/remoting/host/security_key/security_key_ipc_server.h
+++ b/remoting/host/security_key/security_key_ipc_server.h
@@ -15,6 +15,7 @@
namespace remoting {
+class ClientSessionDetails;
class SecurityKeyIpcServerFactory;
// Responsible for handing the server end of the IPC channel between the
@@ -26,7 +27,7 @@ class SecurityKeyIpcServer {
// Creates a new SecurityKeyIpcServer instance.
static std::unique_ptr<SecurityKeyIpcServer> Create(
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);
@@ -50,7 +51,7 @@ class SecurityKeyIpcServerFactory {
virtual std::unique_ptr<SecurityKeyIpcServer> Create(
int connection_id,
- uint32_t peer_session_id,
+ ClientSessionDetails* client_session_details,
base::TimeDelta connect_timeout,
const SecurityKeyAuthHandler::SendMessageCallback& message_callback,
const base::Closure& done_callback) = 0;
« no previous file with comments | « remoting/host/security_key/security_key_ipc_client_unittest.cc ('k') | remoting/host/security_key/security_key_ipc_server.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698