| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 #include "remoting/protocol/chromium_port_allocator_factory.h" | 5 #include "remoting/protocol/chromium_port_allocator_factory.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "net/url_request/url_request_context_getter.h" | 8 #include "net/url_request/url_request_context_getter.h" |
| 9 #include "remoting/protocol/chromium_port_allocator.h" | 9 #include "remoting/protocol/chromium_port_allocator.h" |
| 10 #include "remoting/protocol/network_settings.h" | 10 #include "remoting/protocol/network_settings.h" |
| 11 | 11 |
| 12 namespace remoting { | 12 namespace remoting { |
| 13 namespace protocol { | 13 namespace protocol { |
| 14 | 14 |
| 15 ChromiumPortAllocatorFactory::ChromiumPortAllocatorFactory( | 15 ChromiumPortAllocatorFactory::ChromiumPortAllocatorFactory( |
| 16 const NetworkSettings& network_settings, | 16 const NetworkSettings& network_settings, |
| 17 scoped_refptr<net::URLRequestContextGetter> url_request_context_getter) | 17 scoped_refptr<net::URLRequestContextGetter> url_request_context_getter) |
| 18 : network_settings_(network_settings), | 18 : network_settings_(network_settings), |
| 19 url_request_context_getter_(url_request_context_getter) {} | 19 url_request_context_getter_(url_request_context_getter) {} |
| 20 | 20 |
| 21 ChromiumPortAllocatorFactory::~ChromiumPortAllocatorFactory() {} | 21 ChromiumPortAllocatorFactory::~ChromiumPortAllocatorFactory() {} |
| 22 | 22 |
| 23 rtc::scoped_refptr<webrtc::PortAllocatorFactoryInterface> | 23 scoped_ptr<PortAllocatorFactory> ChromiumPortAllocatorFactory::Create( |
| 24 ChromiumPortAllocatorFactory::Create( | |
| 25 const NetworkSettings& network_settings, | 24 const NetworkSettings& network_settings, |
| 26 scoped_refptr<net::URLRequestContextGetter> url_request_context_getter) { | 25 scoped_refptr<net::URLRequestContextGetter> url_request_context_getter) { |
| 27 rtc::RefCountedObject<ChromiumPortAllocatorFactory>* allocator_factory = | 26 return scoped_ptr<PortAllocatorFactory>(new ChromiumPortAllocatorFactory( |
| 28 new rtc::RefCountedObject<ChromiumPortAllocatorFactory>( | 27 network_settings, url_request_context_getter)); |
| 29 network_settings, url_request_context_getter); | |
| 30 return allocator_factory; | |
| 31 } | 28 } |
| 32 | 29 |
| 33 cricket::PortAllocator* ChromiumPortAllocatorFactory::CreatePortAllocator( | 30 cricket::PortAllocator* ChromiumPortAllocatorFactory::CreatePortAllocator() { |
| 34 const std::vector<StunConfiguration>& stun_servers, | |
| 35 const std::vector<TurnConfiguration>& turn_configurations) { | |
| 36 scoped_ptr<ChromiumPortAllocator> port_allocator( | 31 scoped_ptr<ChromiumPortAllocator> port_allocator( |
| 37 ChromiumPortAllocator::Create(url_request_context_getter_, | 32 ChromiumPortAllocator::Create(url_request_context_getter_, |
| 38 network_settings_)); | 33 network_settings_)); |
| 39 | |
| 40 std::vector<rtc::SocketAddress> stun_hosts; | |
| 41 for (auto stun_it = stun_servers.begin(); stun_it != stun_servers.end(); | |
| 42 ++stun_it) { | |
| 43 stun_hosts.push_back(stun_it->server); | |
| 44 } | |
| 45 port_allocator->SetStunHosts(stun_hosts); | |
| 46 | |
| 47 // TODO(aiguha): Figure out how to translate |turn_configurations| into | |
| 48 // turn hosts so we can set |port_allocator|'s relay hosts. | |
| 49 | |
| 50 return port_allocator.release(); | 34 return port_allocator.release(); |
| 51 } | 35 } |
| 52 | 36 |
| 53 } // namespace protocol | 37 } // namespace protocol |
| 54 } // namespace remoting | 38 } // namespace remoting |
| 55 | 39 |
| OLD | NEW |