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

Unified Diff: remoting/host/security_key/security_key_ipc_client.h

Issue 2162083003: Renaming Gnubby and RemoteSecurityKey files/classes/members (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixing a GYP build error Created 4 years, 5 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/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_

Powered by Google App Engine
This is Rietveld 408576698