Index: remoting/host/security_key/security_key_ipc_client.h |
diff --git a/remoting/host/security_key/remote_security_key_ipc_client.h b/remoting/host/security_key/security_key_ipc_client.h |
similarity index 87% |
rename from remoting/host/security_key/remote_security_key_ipc_client.h |
rename to remoting/host/security_key/security_key_ipc_client.h |
index fcde9a88734e3dc2548831e1103a37bf8c999b1b..1a284e55502d7a9c877caf1a1253b4f68994308c 100644 |
--- a/remoting/host/security_key/remote_security_key_ipc_client.h |
+++ b/remoting/host/security_key/security_key_ipc_client.h |
@@ -2,8 +2,8 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-#ifndef REMOTING_HOST_SECURITY_KEY_REMOTE_SECURITY_KEY_IPC_CLIENT_H_ |
-#define REMOTING_HOST_SECURITY_KEY_REMOTE_SECURITY_KEY_IPC_CLIENT_H_ |
+#ifndef REMOTING_HOST_SECURITY_KEY_SECURITY_KEY_IPC_CLIENT_H_ |
+#define REMOTING_HOST_SECURITY_KEY_SECURITY_KEY_IPC_CLIENT_H_ |
#include <memory> |
#include <string> |
@@ -23,12 +23,12 @@ namespace remoting { |
// Responsible for handing the client end of the IPC channel between the |
// the network process (server) and remote_security_key process (client). |
// The public methods are virtual to allow for using fake objects for testing. |
-class RemoteSecurityKeyIpcClient : public IPC::Listener { |
+class SecurityKeyIpcClient : public IPC::Listener { |
public: |
- RemoteSecurityKeyIpcClient(); |
- ~RemoteSecurityKeyIpcClient() override; |
+ SecurityKeyIpcClient(); |
+ ~SecurityKeyIpcClient() override; |
- // Used to send gnubby extension messages to the client. |
+ // Used to send security key extension messages to the client. |
typedef base::Callback<void(const std::string& response_data)> |
ResponseCallback; |
@@ -102,11 +102,11 @@ class RemoteSecurityKeyIpcClient : public IPC::Listener { |
base::ThreadChecker thread_checker_; |
- base::WeakPtrFactory<RemoteSecurityKeyIpcClient> weak_factory_; |
+ base::WeakPtrFactory<SecurityKeyIpcClient> weak_factory_; |
- DISALLOW_COPY_AND_ASSIGN(RemoteSecurityKeyIpcClient); |
+ DISALLOW_COPY_AND_ASSIGN(SecurityKeyIpcClient); |
}; |
} // namespace remoting |
-#endif // REMOTING_HOST_SECURITY_KEY_REMOTE_SECURITY_KEY_IPC_CLIENT_H_ |
+#endif // REMOTING_HOST_SECURITY_KEY_SECURITY_KEY_IPC_CLIENT_H_ |