| 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_RTP_SENDER_RTP_PACKETIZER_RTP_PACKETIZER_H_ | 5 #ifndef MEDIA_CAST_TRANSPORT_RTP_RTP_PACKETIZER_H_ |
| 6 #define MEDIA_CAST_TRANSPORT_RTP_SENDER_RTP_PACKETIZER_RTP_PACKETIZER_H_ | 6 #define MEDIA_CAST_TRANSPORT_RTP_RTP_PACKETIZER_H_ |
| 7 | 7 |
| 8 #include <cmath> | 8 #include <cmath> |
| 9 #include <list> | 9 #include <list> |
| 10 #include <map> | 10 #include <map> |
| 11 | 11 |
| 12 #include "base/time/time.h" | 12 #include "base/time/time.h" |
| 13 #include "media/cast/transport/rtp_sender/packet_storage/packet_storage.h" | 13 #include "media/cast/transport/rtp/packet_storage.h" |
| 14 | 14 |
| 15 namespace base { | 15 namespace base { |
| 16 class TickClock; | 16 class TickClock; |
| 17 } | 17 } |
| 18 | 18 |
| 19 namespace media { | 19 namespace media { |
| 20 namespace cast { | 20 namespace cast { |
| 21 | 21 |
| 22 namespace transport { | 22 namespace transport { |
| 23 | 23 |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 uint16 packet_id_; | 67 uint16 packet_id_; |
| 68 | 68 |
| 69 size_t send_packet_count_; | 69 size_t send_packet_count_; |
| 70 size_t send_octet_count_; | 70 size_t send_octet_count_; |
| 71 }; | 71 }; |
| 72 | 72 |
| 73 } // namespace transport | 73 } // namespace transport |
| 74 } // namespace cast | 74 } // namespace cast |
| 75 } // namespace media | 75 } // namespace media |
| 76 | 76 |
| 77 #endif // MEDIA_CAST_TRANSPORT_RTP_SENDER_RTP_PACKETIZER_RTP_PACKETIZER_H_ | 77 #endif // MEDIA_CAST_TRANSPORT_RTP_RTP_PACKETIZER_H_ |
| OLD | NEW |