OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_TRANSPORT_PACING_PACED_SENDER_H_ | 5 #ifndef MEDIA_CAST_TRANSPORT_PACING_PACED_SENDER_H_ |
6 #define MEDIA_CAST_TRANSPORT_PACING_PACED_SENDER_H_ | 6 #define MEDIA_CAST_TRANSPORT_PACING_PACED_SENDER_H_ |
7 | 7 |
8 #include <list> | 8 #include <list> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
13 #include "base/memory/weak_ptr.h" | 13 #include "base/memory/weak_ptr.h" |
14 #include "base/single_thread_task_runner.h" | 14 #include "base/single_thread_task_runner.h" |
15 #include "base/threading/non_thread_safe.h" | 15 #include "base/threading/non_thread_safe.h" |
16 #include "base/time/default_tick_clock.h" | 16 #include "base/time/default_tick_clock.h" |
17 #include "base/time/tick_clock.h" | 17 #include "base/time/tick_clock.h" |
18 #include "base/time/time.h" | 18 #include "base/time/time.h" |
| 19 #include "media/cast/logging/logging_defines.h" |
19 #include "media/cast/transport/cast_transport_config.h" | 20 #include "media/cast/transport/cast_transport_config.h" |
20 #include "media/cast/transport/transport/udp_transport.h" | |
21 | 21 |
22 namespace media { | 22 namespace media { |
23 namespace cast { | 23 namespace cast { |
24 | 24 |
25 class LoggingImpl; | 25 class LoggingImpl; |
26 | 26 |
27 namespace transport { | 27 namespace transport { |
28 | 28 |
29 // Use std::pair for free comparison operators. | 29 // Use std::pair for free comparison operators. |
30 // { capture_time, ssrc, packet_id } | 30 // { capture_time, ssrc, packet_id } |
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
138 base::WeakPtrFactory<PacedSender> weak_factory_; | 138 base::WeakPtrFactory<PacedSender> weak_factory_; |
139 | 139 |
140 DISALLOW_COPY_AND_ASSIGN(PacedSender); | 140 DISALLOW_COPY_AND_ASSIGN(PacedSender); |
141 }; | 141 }; |
142 | 142 |
143 } // namespace transport | 143 } // namespace transport |
144 } // namespace cast | 144 } // namespace cast |
145 } // namespace media | 145 } // namespace media |
146 | 146 |
147 #endif // MEDIA_CAST_TRANSPORT_PACING_PACED_SENDER_H_ | 147 #endif // MEDIA_CAST_TRANSPORT_PACING_PACED_SENDER_H_ |
OLD | NEW |