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 MEDIA_CAST_TEST_LOOPBACK_TRANSPORT_H_ | 5 #ifndef MEDIA_CAST_TEST_LOOPBACK_TRANSPORT_H_ |
6 #define MEDIA_CAST_TEST_LOOPBACK_TRANSPORT_H_ | 6 #define MEDIA_CAST_TEST_LOOPBACK_TRANSPORT_H_ |
7 | 7 |
8 #include "base/memory/ref_counted.h" | 8 #include "base/memory/ref_counted.h" |
9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
10 #include "media/cast/cast_environment.h" | 10 #include "media/cast/cast_environment.h" |
11 #include "media/cast/net/cast_transport_config.h" | 11 #include "media/cast/net/cast_transport_config.h" |
12 | 12 |
13 namespace base { | 13 namespace base { |
14 class SingleThreadTaskRunner; | 14 class SingleThreadTaskRunner; |
15 class TickClock; | 15 class TickClock; |
16 } // namespace base | 16 } // namespace base |
17 | 17 |
18 namespace media { | 18 namespace media { |
19 namespace cast { | 19 namespace cast { |
20 | 20 |
21 namespace test { | 21 namespace test { |
22 class PacketPipe; | 22 class PacketPipe; |
23 } // namespace test | 23 } // namespace test |
24 | 24 |
25 // Class that sends the packet to a receiver through a stack of PacketPipes. | 25 // Class that sends the packet to a receiver through a stack of PacketPipes. |
26 class LoopBackTransport : public PacketSender { | 26 class LoopBackTransport : public PacketSender { |
27 public: | 27 public: |
28 explicit LoopBackTransport( | 28 explicit LoopBackTransport( |
29 scoped_refptr<CastEnvironment> cast_environment); | 29 scoped_refptr<CastEnvironment> cast_environment); |
30 virtual ~LoopBackTransport(); | 30 ~LoopBackTransport() override; |
31 | 31 |
32 virtual bool SendPacket(PacketRef packet, | 32 bool SendPacket(PacketRef packet, const base::Closure& cb) override; |
33 const base::Closure& cb) override; | |
34 | 33 |
35 virtual int64 GetBytesSent() override; | 34 int64 GetBytesSent() override; |
36 | 35 |
37 // Initiailize this loopback transport. | 36 // Initiailize this loopback transport. |
38 // Establish a flow of packets from |pipe| to |packet_receiver|. | 37 // Establish a flow of packets from |pipe| to |packet_receiver|. |
39 // The data flow looks like: | 38 // The data flow looks like: |
40 // SendPacket() -> |pipe| -> Fake loopback pipe -> |packet_receiver|. | 39 // SendPacket() -> |pipe| -> Fake loopback pipe -> |packet_receiver|. |
41 void Initialize( | 40 void Initialize( |
42 scoped_ptr<test::PacketPipe> pipe, | 41 scoped_ptr<test::PacketPipe> pipe, |
43 const PacketReceiverCallback& packet_receiver, | 42 const PacketReceiverCallback& packet_receiver, |
44 const scoped_refptr<base::SingleThreadTaskRunner>& task_runner, | 43 const scoped_refptr<base::SingleThreadTaskRunner>& task_runner, |
45 base::TickClock* clock); | 44 base::TickClock* clock); |
46 | 45 |
47 private: | 46 private: |
48 const scoped_refptr<CastEnvironment> cast_environment_; | 47 const scoped_refptr<CastEnvironment> cast_environment_; |
49 scoped_ptr<test::PacketPipe> packet_pipe_; | 48 scoped_ptr<test::PacketPipe> packet_pipe_; |
50 int64 bytes_sent_; | 49 int64 bytes_sent_; |
51 | 50 |
52 DISALLOW_COPY_AND_ASSIGN(LoopBackTransport); | 51 DISALLOW_COPY_AND_ASSIGN(LoopBackTransport); |
53 }; | 52 }; |
54 | 53 |
55 } // namespace cast | 54 } // namespace cast |
56 } // namespace media | 55 } // namespace media |
57 | 56 |
58 #endif // MEDIA_CAST_TEST_LOOPBACK_TRANSPORT_H_ | 57 #endif // MEDIA_CAST_TEST_LOOPBACK_TRANSPORT_H_ |
OLD | NEW |