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

Side by Side Diff: remoting/host/security_key/security_key_message_reader.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
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_REMOTE_SECURITY_KEY_MESSAGE_READER_H_ 5 #ifndef REMOTING_HOST_SECURITY_KEY_SECURITY_KEY_MESSAGE_READER_H_
6 #define REMOTING_HOST_SECURITY_KEY_REMOTE_SECURITY_KEY_MESSAGE_READER_H_ 6 #define REMOTING_HOST_SECURITY_KEY_SECURITY_KEY_MESSAGE_READER_H_
7 7
8 #include "base/callback_forward.h" 8 #include "base/callback_forward.h"
9 #include "remoting/host/security_key/security_key_message.h" 9 #include "remoting/host/security_key/security_key_message.h"
10 10
11 namespace remoting { 11 namespace remoting {
12 12
13 // Interface used for listening for remote security key messages and notifying 13 // Interface used for listening for security key messages and notifying
14 // listeners when one is received. 14 // listeners when one is received.
15 class RemoteSecurityKeyMessageReader { 15 class SecurityKeyMessageReader {
16 public: 16 public:
17 virtual ~RemoteSecurityKeyMessageReader() {} 17 virtual ~SecurityKeyMessageReader() {}
18 18
19 // Starts the process of listening for security key messages. 19 // Starts the process of listening for security key messages.
20 // |message_callback| is called for each received message. 20 // |message_callback| is called for each received message.
21 // |error_callback| is called in case of an error or the file is closed. 21 // |error_callback| is called in case of an error or the file is closed.
22 // This method is asynchronous, callbacks will be called on the thread this 22 // This method is asynchronous, callbacks will be called on the thread this
23 // method is called on. These callbacks can be called up to the point this 23 // method is called on. These callbacks can be called up to the point this
24 // instance is destroyed and may be destroyed as a result of the callback 24 // instance is destroyed and may be destroyed as a result of the callback
25 // being invoked. 25 // being invoked.
26 virtual void Start(const SecurityKeyMessageCallback& message_callback, 26 virtual void Start(const SecurityKeyMessageCallback& message_callback,
27 const base::Closure& error_callback) = 0; 27 const base::Closure& error_callback) = 0;
28 }; 28 };
29 29
30 } // namespace remoting 30 } // namespace remoting
31 31
32 #endif // REMOTING_HOST_SECURITY_KEY_REMOTE_SECURITY_KEY_MESSAGE_READER_H_ 32 #endif // REMOTING_HOST_SECURITY_KEY_SECURITY_KEY_MESSAGE_READER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698