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

Side by Side Diff: remoting/protocol/datagram_channel_factory.h

Issue 570463002: Revert of Move PseudoTCP and channel auth out of LibjingleTransportFactory. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@clean_dgrams
Patch Set: Created 6 years, 3 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
« no previous file with comments | « remoting/protocol/channel_multiplexer.cc ('k') | remoting/protocol/fake_authenticator.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2014 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_PROTOCOL_DATAGRAM_CHANNEL_FACTORY_H_
6 #define REMOTING_PROTOCOL_DATAGRAM_CHANNEL_FACTORY_H_
7
8 namespace net {
9 class Socket;
10 } // namespace net
11
12 namespace remoting {
13 namespace protocol {
14
15 class DatagramChannelFactory {
16 public:
17 typedef base::Callback<void(scoped_ptr<net::Socket>)>
18 ChannelCreatedCallback;
19
20 DatagramChannelFactory() {}
21
22 // Creates new channels and calls the |callback| when then new channel is
23 // created and connected. The |callback| is called with NULL if channel setup
24 // failed for any reason. Callback may be called synchronously, before the
25 // call returns. All channels must be destroyed, and CancelChannelCreation()
26 // called for any pending channels, before the factory is destroyed.
27 virtual void CreateChannel(const std::string& name,
28 const ChannelCreatedCallback& callback) = 0;
29
30 // Cancels a pending CreateChannel() operation for the named channel. If the
31 // channel creation already completed then canceling it has no effect. When
32 // shutting down this method must be called for each channel pending creation.
33 virtual void CancelChannelCreation(const std::string& name) = 0;
34
35 protected:
36 virtual ~DatagramChannelFactory() {}
37
38 private:
39 DISALLOW_COPY_AND_ASSIGN(DatagramChannelFactory);
40 };
41
42 } // namespace protocol
43 } // namespace remoting
44
45 #endif // REMOTING_PROTOCOL_DATAGRAM_CHANNEL_FACTORY_H_
OLDNEW
« no previous file with comments | « remoting/protocol/channel_multiplexer.cc ('k') | remoting/protocol/fake_authenticator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698