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

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

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/gnubby_auth_handler_linux.cc
diff --git a/remoting/host/security_key/gnubby_auth_handler_linux.cc b/remoting/host/security_key/gnubby_auth_handler_linux.cc
index 5ba1ee2db4f11f9d011b8ec645620a42816b2a26..ea66806f7c3aafd681369c2c12e324bd4743f726 100644
--- a/remoting/host/security_key/gnubby_auth_handler_linux.cc
+++ b/remoting/host/security_key/gnubby_auth_handler_linux.cc
@@ -113,9 +113,10 @@ class GnubbyAuthHandlerLinux : public GnubbyAuthHandler {
};
std::unique_ptr<GnubbyAuthHandler> GnubbyAuthHandler::Create(
- const SendMessageCallback& callback) {
+ ClientSessionDetails* client_session_details,
+ const SendMessageCallback& send_message_callback) {
std::unique_ptr<GnubbyAuthHandler> auth_handler(new GnubbyAuthHandlerLinux());
- auth_handler->SetSendMessageCallback(callback);
+ auth_handler->SetSendMessageCallback(send_message_callback);
return auth_handler;
}

Powered by Google App Engine
This is Rietveld 408576698