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_NET_RTP_SENDER_PACKET_STORAGE_PACKET_STORAGE_H_ | 5 #ifndef MEDIA_CAST_NET_RTP_SENDER_PACKET_STORAGE_PACKET_STORAGE_H_ |
6 #define MEDIA_CAST_NET_RTP_SENDER_PACKET_STORAGE_PACKET_STORAGE_H_ | 6 #define MEDIA_CAST_NET_RTP_SENDER_PACKET_STORAGE_PACKET_STORAGE_H_ |
7 | 7 |
8 #include <deque> | 8 #include <deque> |
9 | 9 |
| 10 #include "base/macros.h" |
10 #include "media/cast/net/pacing/paced_sender.h" | 11 #include "media/cast/net/pacing/paced_sender.h" |
11 | 12 |
12 namespace media { | 13 namespace media { |
13 namespace cast { | 14 namespace cast { |
14 | 15 |
15 class PacketStorage { | 16 class PacketStorage { |
16 public: | 17 public: |
17 PacketStorage(); | 18 PacketStorage(); |
18 virtual ~PacketStorage(); | 19 virtual ~PacketStorage(); |
19 | 20 |
(...skipping 19 matching lines...) Expand all Loading... |
39 // |frames_| queue has not yet been popped. | 40 // |frames_| queue has not yet been popped. |
40 size_t zombie_count_; | 41 size_t zombie_count_; |
41 | 42 |
42 DISALLOW_COPY_AND_ASSIGN(PacketStorage); | 43 DISALLOW_COPY_AND_ASSIGN(PacketStorage); |
43 }; | 44 }; |
44 | 45 |
45 } // namespace cast | 46 } // namespace cast |
46 } // namespace media | 47 } // namespace media |
47 | 48 |
48 #endif // MEDIA_CAST_NET_RTP_SENDER_PACKET_STORAGE_PACKET_STORAGE_H_ | 49 #endif // MEDIA_CAST_NET_RTP_SENDER_PACKET_STORAGE_PACKET_STORAGE_H_ |
OLD | NEW |