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

Unified Diff: remoting/host/security_key/security_key_extension.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_extension.h
diff --git a/remoting/host/security_key/gnubby_extension.h b/remoting/host/security_key/security_key_extension.h
similarity index 60%
rename from remoting/host/security_key/gnubby_extension.h
rename to remoting/host/security_key/security_key_extension.h
index e44eb07b7bbcbfcea32a97a27c5660d4e4cccf91..4f4fc4c249612b051aeff67bf1a54634cb3a9710 100644
--- a/remoting/host/security_key/gnubby_extension.h
+++ b/remoting/host/security_key/security_key_extension.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_GNUBBY_EXTENSION_H_
-#define REMOTING_HOST_SECURITY_KEY_GNUBBY_EXTENSION_H_
+#ifndef REMOTING_HOST_SECURITY_KEY_SECURITY_KEY_EXTENSION_H_
+#define REMOTING_HOST_SECURITY_KEY_SECURITY_KEY_EXTENSION_H_
#include <memory>
#include <string>
@@ -16,11 +16,11 @@ namespace remoting {
class ClientSessionDetails;
class HostExtensionSession;
-// GnubbyExtension extends HostExtension to enable Security Key support.
-class GnubbyExtension : public HostExtension {
+// SecurityKeyExtension extends HostExtension to enable Security Key support.
+class SecurityKeyExtension : public HostExtension {
public:
- GnubbyExtension();
- ~GnubbyExtension() override;
+ SecurityKeyExtension();
+ ~SecurityKeyExtension() override;
// HostExtension interface.
std::string capability() const override;
@@ -29,9 +29,9 @@ class GnubbyExtension : public HostExtension {
protocol::ClientStub* client_stub) override;
private:
- DISALLOW_COPY_AND_ASSIGN(GnubbyExtension);
+ DISALLOW_COPY_AND_ASSIGN(SecurityKeyExtension);
};
} // namespace remoting
-#endif // REMOTING_HOST_SECURITY_KEY_GNUBBY_EXTENSION_H_
+#endif // REMOTING_HOST_SECURITY_KEY_SECURITY_KEY_EXTENSION_H_

Powered by Google App Engine
This is Rietveld 408576698