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

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

Issue 2085353004: Update GnubbyAuthHandler to use the current session ID (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@host_extension
Patch Set: Fixing a build break Created 4 years, 6 months 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/remote_security_key_ipc_server.h
diff --git a/remoting/host/security_key/remote_security_key_ipc_server.h b/remoting/host/security_key/remote_security_key_ipc_server.h
index 9c754f65b23ebc0b7a2859110eabdb642abc5a49..ed34853e54566995dbdf4f4e632d3d2bc4a34222 100644
--- a/remoting/host/security_key/remote_security_key_ipc_server.h
+++ b/remoting/host/security_key/remote_security_key_ipc_server.h
@@ -5,6 +5,7 @@
#ifndef REMOTING_HOST_SECURITY_KEY_REMOTE_SECURITY_KEY_IPC_SERVER_H_
#define REMOTING_HOST_SECURITY_KEY_REMOTE_SECURITY_KEY_IPC_SERVER_H_
+#include <cstdint>
#include <memory>
#include <string>
@@ -25,6 +26,7 @@ class RemoteSecurityKeyIpcServer {
// Creates a new RemoteSecurityKeyIpcServer instance.
static std::unique_ptr<RemoteSecurityKeyIpcServer> Create(
int connection_id,
+ uint32_t peer_session_id,
base::TimeDelta initial_connect_timeout,
const GnubbyAuthHandler::SendMessageCallback& message_callback,
const base::Closure& done_callback);
@@ -48,6 +50,7 @@ class RemoteSecurityKeyIpcServerFactory {
virtual std::unique_ptr<RemoteSecurityKeyIpcServer> Create(
int connection_id,
+ uint32_t peer_session_id,
base::TimeDelta connect_timeout,
const GnubbyAuthHandler::SendMessageCallback& message_callback,
const base::Closure& done_callback) = 0;

Powered by Google App Engine
This is Rietveld 408576698