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 // Utility parser for rtp packetizer unittests | 5 // Utility parser for rtp packetizer unittests |
6 #ifndef MEDIA_CAST_TRANSPORT_RTP_SENDER_RTP_PACKETIZER_TEST_RTP_HEADER_PARSER_H_ | 6 #ifndef MEDIA_CAST_TRANSPORT_RTP_RTP_HEADER_PARSER_H_ |
7 #define MEDIA_CAST_TRANSPORT_RTP_SENDER_RTP_PACKETIZER_TEST_RTP_HEADER_PARSER_H_ | 7 #define MEDIA_CAST_TRANSPORT_RTP_RTP_HEADER_PARSER_H_ |
8 | 8 |
9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
10 #include "media/cast/transport/cast_transport_defines.h" | 10 #include "media/cast/transport/cast_transport_defines.h" |
11 | 11 |
12 namespace media { | 12 namespace media { |
13 namespace cast { | 13 namespace cast { |
14 namespace transport { | 14 namespace transport { |
15 | 15 |
16 // TODO(miu): Kill this and use RtpCastHeader instead. | 16 // TODO(miu): Kill this and use RtpCastHeader instead. |
17 struct RtpCastTestHeader { | 17 struct RtpCastTestHeader { |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 mutable transport::FrameIdWrapHelper frame_id_wrap_helper_; | 54 mutable transport::FrameIdWrapHelper frame_id_wrap_helper_; |
55 mutable transport::FrameIdWrapHelper reference_frame_id_wrap_helper_; | 55 mutable transport::FrameIdWrapHelper reference_frame_id_wrap_helper_; |
56 | 56 |
57 DISALLOW_COPY_AND_ASSIGN(RtpHeaderParser); | 57 DISALLOW_COPY_AND_ASSIGN(RtpHeaderParser); |
58 }; | 58 }; |
59 | 59 |
60 } // namespace transport | 60 } // namespace transport |
61 } // namespace cast | 61 } // namespace cast |
62 } // namespace media | 62 } // namespace media |
63 | 63 |
64 #endif // MEDIA_CAST_TRANSPORT_RTP_SENDER_RTP_PACKETIZER_TEST_RTP_HEADER_PARSER
_H_ | 64 #endif // MEDIA_CAST_TRANSPORT_RTP_RTP_HEADER_PARSER_H_ |
OLD | NEW |