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

Side by Side Diff: remoting/host/security_key/gnubby_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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef REMOTING_HOST_SECURITY_KEY_GNUBBY_EXTENSION_H_
6 #define REMOTING_HOST_SECURITY_KEY_GNUBBY_EXTENSION_H_
7
8 #include <memory>
9 #include <string>
10
11 #include "base/macros.h"
12 #include "remoting/host/host_extension.h"
13
14 namespace remoting {
15
16 class ClientSessionDetails;
17 class HostExtensionSession;
18
19 // GnubbyExtension extends HostExtension to enable Security Key support.
20 class GnubbyExtension : public HostExtension {
21 public:
22 GnubbyExtension();
23 ~GnubbyExtension() override;
24
25 // HostExtension interface.
26 std::string capability() const override;
27 std::unique_ptr<HostExtensionSession> CreateExtensionSession(
28 ClientSessionDetails* client_session_details,
29 protocol::ClientStub* client_stub) override;
30
31 private:
32 DISALLOW_COPY_AND_ASSIGN(GnubbyExtension);
33 };
34
35 } // namespace remoting
36
37 #endif // REMOTING_HOST_SECURITY_KEY_GNUBBY_EXTENSION_H_
OLDNEW
« no previous file with comments | « remoting/host/security_key/gnubby_auth_handler_win_unittest.cc ('k') | remoting/host/security_key/gnubby_extension.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698