| 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_SOCKET_FACTORY_H_ | 5 #ifndef REMOTING_TEST_FAKE_SOCKET_FACTORY_H_ |
| 6 #define REMOTING_TEST_FAKE_SOCKET_FACTORY_H_ | 6 #define REMOTING_TEST_FAKE_SOCKET_FACTORY_H_ |
| 7 | 7 |
| 8 #include <list> | 8 #include <list> |
| 9 | 9 |
| 10 #include "base/callback_forward.h" | 10 #include "base/callback_forward.h" |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 // control bandwidth. | 45 // control bandwidth. |
| 46 void SetLatency(base::TimeDelta average, base::TimeDelta stddev); | 46 void SetLatency(base::TimeDelta average, base::TimeDelta stddev); |
| 47 | 47 |
| 48 void set_out_of_order_rate(double out_of_order_rate) { | 48 void set_out_of_order_rate(double out_of_order_rate) { |
| 49 out_of_order_rate_ = out_of_order_rate; | 49 out_of_order_rate_ = out_of_order_rate; |
| 50 } | 50 } |
| 51 | 51 |
| 52 // rtc::PacketSocketFactory interface. | 52 // rtc::PacketSocketFactory interface. |
| 53 virtual rtc::AsyncPacketSocket* CreateUdpSocket( | 53 virtual rtc::AsyncPacketSocket* CreateUdpSocket( |
| 54 const rtc::SocketAddress& local_address, | 54 const rtc::SocketAddress& local_address, |
| 55 int min_port, int max_port) OVERRIDE; | 55 int min_port, int max_port) override; |
| 56 virtual rtc::AsyncPacketSocket* CreateServerTcpSocket( | 56 virtual rtc::AsyncPacketSocket* CreateServerTcpSocket( |
| 57 const rtc::SocketAddress& local_address, | 57 const rtc::SocketAddress& local_address, |
| 58 int min_port, int max_port, | 58 int min_port, int max_port, |
| 59 int opts) OVERRIDE; | 59 int opts) override; |
| 60 virtual rtc::AsyncPacketSocket* CreateClientTcpSocket( | 60 virtual rtc::AsyncPacketSocket* CreateClientTcpSocket( |
| 61 const rtc::SocketAddress& local_address, | 61 const rtc::SocketAddress& local_address, |
| 62 const rtc::SocketAddress& remote_address, | 62 const rtc::SocketAddress& remote_address, |
| 63 const rtc::ProxyInfo& proxy_info, | 63 const rtc::ProxyInfo& proxy_info, |
| 64 const std::string& user_agent, | 64 const std::string& user_agent, |
| 65 int opts) OVERRIDE; | 65 int opts) override; |
| 66 virtual rtc::AsyncResolverInterface* CreateAsyncResolver() OVERRIDE; | 66 virtual rtc::AsyncResolverInterface* CreateAsyncResolver() override; |
| 67 | 67 |
| 68 // FakeNetworkDispatcher::Node interface. | 68 // FakeNetworkDispatcher::Node interface. |
| 69 virtual const scoped_refptr<base::SingleThreadTaskRunner>& GetThread() | 69 virtual const scoped_refptr<base::SingleThreadTaskRunner>& GetThread() |
| 70 const OVERRIDE; | 70 const override; |
| 71 virtual const rtc::IPAddress& GetAddress() const OVERRIDE; | 71 virtual const rtc::IPAddress& GetAddress() const override; |
| 72 virtual void ReceivePacket(const rtc::SocketAddress& from, | 72 virtual void ReceivePacket(const rtc::SocketAddress& from, |
| 73 const rtc::SocketAddress& to, | 73 const rtc::SocketAddress& to, |
| 74 const scoped_refptr<net::IOBuffer>& data, | 74 const scoped_refptr<net::IOBuffer>& data, |
| 75 int data_size) OVERRIDE; | 75 int data_size) override; |
| 76 | 76 |
| 77 private: | 77 private: |
| 78 struct PendingPacket { | 78 struct PendingPacket { |
| 79 PendingPacket(); | 79 PendingPacket(); |
| 80 PendingPacket( | 80 PendingPacket( |
| 81 const rtc::SocketAddress& from, | 81 const rtc::SocketAddress& from, |
| 82 const rtc::SocketAddress& to, | 82 const rtc::SocketAddress& to, |
| 83 const scoped_refptr<net::IOBuffer>& data, | 83 const scoped_refptr<net::IOBuffer>& data, |
| 84 int data_size); | 84 int data_size); |
| 85 ~PendingPacket(); | 85 ~PendingPacket(); |
| (...skipping 28 matching lines...) Expand all Loading... |
| 114 std::list<PendingPacket> pending_packets_; | 114 std::list<PendingPacket> pending_packets_; |
| 115 | 115 |
| 116 base::WeakPtrFactory<FakePacketSocketFactory> weak_factory_; | 116 base::WeakPtrFactory<FakePacketSocketFactory> weak_factory_; |
| 117 | 117 |
| 118 DISALLOW_COPY_AND_ASSIGN(FakePacketSocketFactory); | 118 DISALLOW_COPY_AND_ASSIGN(FakePacketSocketFactory); |
| 119 }; | 119 }; |
| 120 | 120 |
| 121 } // namespace remoting | 121 } // namespace remoting |
| 122 | 122 |
| 123 #endif // REMOTING_TEST_FAKE_SOCKET_FACTORY_H_ | 123 #endif // REMOTING_TEST_FAKE_SOCKET_FACTORY_H_ |
| OLD | NEW |