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

Unified Diff: remoting/host/security_key/fake_remote_security_key_ipc_client.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_client.h
diff --git a/remoting/host/security_key/fake_remote_security_key_ipc_client.h b/remoting/host/security_key/fake_remote_security_key_ipc_client.h
index adf10db01bea48cccd96debbc54cc60f187cfc79..d08ce7b34379ca6e0f1f9f3bb42c3d798ed39c6c 100644
--- a/remoting/host/security_key/fake_remote_security_key_ipc_client.h
+++ b/remoting/host/security_key/fake_remote_security_key_ipc_client.h
@@ -52,6 +52,8 @@ class FakeRemoteSecurityKeyIpcClient : public RemoteSecurityKeyIpcClient {
return last_message_received_;
}
+ bool ipc_channel_connected() { return ipc_channel_connected_; }
+
void set_wait_for_ipc_channel_return_value(bool return_value) {
wait_for_ipc_channel_return_value_ = return_value;
}
@@ -99,6 +101,9 @@ class FakeRemoteSecurityKeyIpcClient : public RemoteSecurityKeyIpcClient {
// Value returned by WaitForSecurityKeyIpcServerChannel() method.
bool wait_for_ipc_channel_return_value_ = true;
+ // Stores whether a connection to the server IPC channel is active.
+ bool ipc_channel_connected_ = false;
+
// Value returned by SendSecurityKeyRequest() method.
std::string security_key_response_payload_;
« no previous file with comments | « remoting/host/host_mock_objects.h ('k') | remoting/host/security_key/fake_remote_security_key_ipc_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698