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

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

Issue 1514853003: Revert of Removing references to webrtc::PortAllocatorFactoryInterface. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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 2014 The Chromium Authors. All rights reserved. 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 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_PROTOCOL_CHROMIUM_PORT_ALLOCATOR_H_ 5 #ifndef REMOTING_PROTOCOL_CHROMIUM_PORT_ALLOCATOR_H_
6 #define REMOTING_PROTOCOL_CHROMIUM_PORT_ALLOCATOR_H_ 6 #define REMOTING_PROTOCOL_CHROMIUM_PORT_ALLOCATOR_H_
7 7
8 #include <set> 8 #include <set>
9 9
10 #include "base/memory/ref_counted.h" 10 #include "base/memory/ref_counted.h"
11 #include "base/memory/scoped_ptr.h" 11 #include "base/memory/scoped_ptr.h"
12 #include "net/url_request/url_request_context_getter.h"
13 #include "third_party/webrtc/p2p/client/httpportallocator.h" 12 #include "third_party/webrtc/p2p/client/httpportallocator.h"
14 13
14 namespace net {
15 class URLRequestContextGetter;
16 } // namespace net
17
15 namespace remoting { 18 namespace remoting {
16 namespace protocol { 19 namespace protocol {
17 20
18 struct NetworkSettings; 21 struct NetworkSettings;
19 22
20 // An implementation of cricket::PortAllocator for libjingle that 23 // An implementation of cricket::PortAllocator for libjingle that
21 // uses Chromium's network stack and configures itself according 24 // uses Chromium's network stack and configures itself according
22 // to the specified NetworkSettings. 25 // to the specified NetworkSettings.
23 class ChromiumPortAllocator : public cricket::HttpPortAllocatorBase { 26 class ChromiumPortAllocator : public cricket::HttpPortAllocatorBase {
24 public: 27 public:
(...skipping 20 matching lines...) Expand all
45 scoped_ptr<rtc::NetworkManager> network_manager_; 48 scoped_ptr<rtc::NetworkManager> network_manager_;
46 scoped_ptr<rtc::PacketSocketFactory> socket_factory_; 49 scoped_ptr<rtc::PacketSocketFactory> socket_factory_;
47 50
48 DISALLOW_COPY_AND_ASSIGN(ChromiumPortAllocator); 51 DISALLOW_COPY_AND_ASSIGN(ChromiumPortAllocator);
49 }; 52 };
50 53
51 } // namespace protocol 54 } // namespace protocol
52 } // namespace remoting 55 } // namespace remoting
53 56
54 #endif // REMOTING_HOST_HOST_PORT_ALLOCATOR_H_ 57 #endif // REMOTING_HOST_HOST_PORT_ALLOCATOR_H_
OLDNEW
« no previous file with comments | « remoting/host/cast_extension_session.cc ('k') | remoting/protocol/chromium_port_allocator_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698