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

Side by Side Diff: remoting/host/security_key/gnubby_auth_handler.h

Issue 1864213002: Convert //remoting to use std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Mac IWYU Created 4 years, 8 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
1 // Copyright 2016 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef REMOTING_HOST_SECURITY_KEY_GNUBBY_AUTH_HANDLER_H_ 5 #ifndef REMOTING_HOST_SECURITY_KEY_GNUBBY_AUTH_HANDLER_H_
6 #define REMOTING_HOST_SECURITY_KEY_GNUBBY_AUTH_HANDLER_H_ 6 #define REMOTING_HOST_SECURITY_KEY_GNUBBY_AUTH_HANDLER_H_
7 7
8 #include <memory>
8 #include <string> 9 #include <string>
9 10
10 #include "base/callback.h" 11 #include "base/callback.h"
11 #include "base/memory/scoped_ptr.h"
12 #include "base/time/time.h" 12 #include "base/time/time.h"
13 13
14 namespace base { 14 namespace base {
15 class FilePath; 15 class FilePath;
16 } // namespace base 16 } // namespace base
17 17
18 namespace remoting { 18 namespace remoting {
19 19
20 // Class responsible for proxying authentication data between a local gnubbyd 20 // Class responsible for proxying authentication data between a local gnubbyd
21 // and the client. 21 // and the client.
22 class GnubbyAuthHandler { 22 class GnubbyAuthHandler {
23 public: 23 public:
24 virtual ~GnubbyAuthHandler() {} 24 virtual ~GnubbyAuthHandler() {}
25 25
26 // Used to send gnubby extension messages to the client. 26 // Used to send gnubby extension messages to the client.
27 typedef base::Callback<void(int connection_id, const std::string& data)> 27 typedef base::Callback<void(int connection_id, const std::string& data)>
28 SendMessageCallback; 28 SendMessageCallback;
29 29
30 // Creates a platform-specific GnubbyAuthHandler. 30 // Creates a platform-specific GnubbyAuthHandler.
31 // All invocations of |callback| are guaranteed to occur before the underlying 31 // All invocations of |callback| are guaranteed to occur before the underlying
32 // GnubbyAuthHandler object is destroyed. It is not safe to destroy the 32 // GnubbyAuthHandler object is destroyed. It is not safe to destroy the
33 // GnubbyAuthHandler object within the callback. 33 // GnubbyAuthHandler object within the callback.
34 static scoped_ptr<GnubbyAuthHandler> Create( 34 static std::unique_ptr<GnubbyAuthHandler> Create(
35 const SendMessageCallback& callback); 35 const SendMessageCallback& callback);
36 36
37 #if defined(OS_LINUX) 37 #if defined(OS_LINUX)
38 // Specify the name of the socket to listen to gnubby requests on. 38 // Specify the name of the socket to listen to gnubby requests on.
39 static void SetGnubbySocketName(const base::FilePath& gnubby_socket_name); 39 static void SetGnubbySocketName(const base::FilePath& gnubby_socket_name);
40 #endif // defined(OS_LINUX) 40 #endif // defined(OS_LINUX)
41 41
42 // Sets the callback used to send messages to the client. 42 // Sets the callback used to send messages to the client.
43 virtual void SetSendMessageCallback(const SendMessageCallback& callback) = 0; 43 virtual void SetSendMessageCallback(const SendMessageCallback& callback) = 0;
44 44
(...skipping 13 matching lines...) Expand all
58 // Returns the number of active gnubby connections. 58 // Returns the number of active gnubby connections.
59 virtual size_t GetActiveConnectionCountForTest() const = 0; 59 virtual size_t GetActiveConnectionCountForTest() const = 0;
60 60
61 // Sets the timeout used when waiting for a gnubby response. 61 // Sets the timeout used when waiting for a gnubby response.
62 virtual void SetRequestTimeoutForTest(base::TimeDelta timeout) = 0; 62 virtual void SetRequestTimeoutForTest(base::TimeDelta timeout) = 0;
63 }; 63 };
64 64
65 } // namespace remoting 65 } // namespace remoting
66 66
67 #endif // REMOTING_HOST_SECURITY_KEY_GNUBBY_AUTH_HANDLER_H_ 67 #endif // REMOTING_HOST_SECURITY_KEY_GNUBBY_AUTH_HANDLER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698