| 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_RTCP_RTCP_BUILDER_H_ | 5 #ifndef MEDIA_CAST_NET_RTCP_RTCP_BUILDER_H_ |
| 6 #define MEDIA_CAST_NET_RTCP_RTCP_BUILDER_H_ | 6 #define MEDIA_CAST_NET_RTCP_RTCP_BUILDER_H_ |
| 7 | 7 |
| 8 #include <deque> | 8 #include <deque> |
| 9 #include <list> | 9 #include <list> |
| 10 #include <string> | 10 #include <string> |
| 11 | 11 |
| 12 #include "base/big_endian.h" | 12 #include "base/big_endian.h" |
| 13 #include "base/macros.h" |
| 13 #include "media/cast/net/cast_transport_config.h" | 14 #include "media/cast/net/cast_transport_config.h" |
| 14 #include "media/cast/net/cast_transport_defines.h" | 15 #include "media/cast/net/cast_transport_defines.h" |
| 15 #include "media/cast/net/rtcp/receiver_rtcp_event_subscriber.h" | 16 #include "media/cast/net/rtcp/receiver_rtcp_event_subscriber.h" |
| 16 #include "media/cast/net/rtcp/rtcp_defines.h" | 17 #include "media/cast/net/rtcp/rtcp_defines.h" |
| 17 | 18 |
| 18 namespace media { | 19 namespace media { |
| 19 namespace cast { | 20 namespace cast { |
| 20 | 21 |
| 21 class RtcpBuilder { | 22 class RtcpBuilder { |
| 22 public: | 23 public: |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 char* ptr_of_length_; | 59 char* ptr_of_length_; |
| 59 PacketRef packet_; | 60 PacketRef packet_; |
| 60 | 61 |
| 61 DISALLOW_COPY_AND_ASSIGN(RtcpBuilder); | 62 DISALLOW_COPY_AND_ASSIGN(RtcpBuilder); |
| 62 }; | 63 }; |
| 63 | 64 |
| 64 } // namespace cast | 65 } // namespace cast |
| 65 } // namespace media | 66 } // namespace media |
| 66 | 67 |
| 67 #endif // MEDIA_CAST_NET_RTCP_RTCP_SENDER_H_ | 68 #endif // MEDIA_CAST_NET_RTCP_RTCP_SENDER_H_ |
| OLD | NEW |