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

Unified Diff: remoting/host/security_key/fake_remote_security_key_ipc_client.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/fake_remote_security_key_ipc_client.cc
diff --git a/remoting/host/security_key/fake_remote_security_key_ipc_client.cc b/remoting/host/security_key/fake_remote_security_key_ipc_client.cc
index e87e596f62cbf90ce3b93fbf74b4fabbafa8d7f1..370e84517f4c801ccec1ae4a98ba2920f3530b6e 100644
--- a/remoting/host/security_key/fake_remote_security_key_ipc_client.cc
+++ b/remoting/host/security_key/fake_remote_security_key_ipc_client.cc
@@ -106,10 +106,12 @@ bool FakeRemoteSecurityKeyIpcClient::OnMessageReceived(
}
void FakeRemoteSecurityKeyIpcClient::OnChannelConnected(int32_t peer_pid) {
+ ipc_channel_connected_ = true;
channel_event_callback_.Run();
}
void FakeRemoteSecurityKeyIpcClient::OnChannelError() {
+ ipc_channel_connected_ = false;
channel_event_callback_.Run();
}

Powered by Google App Engine
This is Rietveld 408576698