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

Unified Diff: remoting/host/security_key/fake_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: Updating a comment 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/fake_remote_security_key_ipc_server.h
diff --git a/remoting/host/security_key/fake_remote_security_key_ipc_server.h b/remoting/host/security_key/fake_remote_security_key_ipc_server.h
index 6b4f0a0ff885dec4e891d7d439a05418691c3249..56bdeca3fdc3da97a707e834163f3b437fcc1e84 100644
--- a/remoting/host/security_key/fake_remote_security_key_ipc_server.h
+++ b/remoting/host/security_key/fake_remote_security_key_ipc_server.h
@@ -7,6 +7,7 @@
#include "remoting/host/security_key/remote_security_key_ipc_server.h"
+#include <cstdint>
#include <map>
#include <memory>
#include <string>
@@ -31,6 +32,7 @@ class FakeRemoteSecurityKeyIpcServer : public RemoteSecurityKeyIpcServer,
public:
FakeRemoteSecurityKeyIpcServer(
int connection_id,
+ uint32_t peer_session_id,
base::TimeDelta initial_connect_timeout,
const GnubbyAuthHandler::SendMessageCallback& send_message_callback,
const base::Closure& channel_closed_callback);
@@ -111,6 +113,7 @@ class FakeRemoteSecurityKeyIpcServerFactory
// RemoteSecurityKeyIpcServerFactory implementation.
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) override;

Powered by Google App Engine
This is Rietveld 408576698