| OLD | NEW |
| 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_TEST_FAKE_PORT_ALLOCATOR_H_ | 5 #ifndef REMOTING_TEST_FAKE_PORT_ALLOCATOR_H_ |
| 6 #define REMOTING_TEST_FAKE_PORT_ALLOCATOR_H_ | 6 #define REMOTING_TEST_FAKE_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" |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 | 23 |
| 24 virtual ~FakePortAllocator(); | 24 virtual ~FakePortAllocator(); |
| 25 | 25 |
| 26 FakePacketSocketFactory* socket_factory() { return socket_factory_.get(); } | 26 FakePacketSocketFactory* socket_factory() { return socket_factory_.get(); } |
| 27 | 27 |
| 28 // cricket::BasicPortAllocator overrides. | 28 // cricket::BasicPortAllocator overrides. |
| 29 virtual cricket::PortAllocatorSession* CreateSessionInternal( | 29 virtual cricket::PortAllocatorSession* CreateSessionInternal( |
| 30 const std::string& content_name, | 30 const std::string& content_name, |
| 31 int component, | 31 int component, |
| 32 const std::string& ice_username_fragment, | 32 const std::string& ice_username_fragment, |
| 33 const std::string& ice_password) OVERRIDE; | 33 const std::string& ice_password) override; |
| 34 | 34 |
| 35 private: | 35 private: |
| 36 FakePortAllocator(scoped_ptr<rtc::NetworkManager> network_manager, | 36 FakePortAllocator(scoped_ptr<rtc::NetworkManager> network_manager, |
| 37 scoped_ptr<FakePacketSocketFactory> socket_factory); | 37 scoped_ptr<FakePacketSocketFactory> socket_factory); |
| 38 | 38 |
| 39 scoped_ptr<rtc::NetworkManager> network_manager_; | 39 scoped_ptr<rtc::NetworkManager> network_manager_; |
| 40 scoped_ptr<FakePacketSocketFactory> socket_factory_; | 40 scoped_ptr<FakePacketSocketFactory> socket_factory_; |
| 41 | 41 |
| 42 DISALLOW_COPY_AND_ASSIGN(FakePortAllocator); | 42 DISALLOW_COPY_AND_ASSIGN(FakePortAllocator); |
| 43 }; | 43 }; |
| 44 | 44 |
| 45 } // namespace remoting | 45 } // namespace remoting |
| 46 | 46 |
| 47 #endif // REMOTING_TEST_FAKE_PORT_ALLOCATOR_H_ | 47 #endif // REMOTING_TEST_FAKE_PORT_ALLOCATOR_H_ |
| OLD | NEW |