| 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_RTCP_RTCP_BUILDER_H_ | 5 #ifndef MEDIA_CAST_TRANSPORT_RTCP_RTCP_BUILDER_H_ |
| 6 #define MEDIA_CAST_TRANSPORT_RTCP_RTCP_BUILDER_H_ | 6 #define MEDIA_CAST_TRANSPORT_RTCP_RTCP_BUILDER_H_ |
| 7 | 7 |
| 8 #include <list> | 8 #include <list> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 void BuildBye(std::vector<uint8>* packet) const; | 59 void BuildBye(std::vector<uint8>* packet) const; |
| 60 | 60 |
| 61 void BuildDlrrRb(const RtcpDlrrReportBlock* dlrr, | 61 void BuildDlrrRb(const RtcpDlrrReportBlock* dlrr, |
| 62 std::vector<uint8>* packet) const; | 62 std::vector<uint8>* packet) const; |
| 63 void BuildSenderLog(RtcpSenderLogMessage* sender_log_message, | 63 void BuildSenderLog(RtcpSenderLogMessage* sender_log_message, |
| 64 std::vector<uint8>* packet) const; | 64 std::vector<uint8>* packet) const; |
| 65 | 65 |
| 66 const uint32 ssrc_; | 66 const uint32 ssrc_; |
| 67 const std::string c_name_; | 67 const std::string c_name_; |
| 68 | 68 |
| 69 // Not owned by this class. | 69 PacedPacketSender* const transport_; // Not owned by this class. |
| 70 PacedPacketSender* transport_; | |
| 71 | 70 |
| 72 DISALLOW_COPY_AND_ASSIGN(RtcpBuilder); | 71 DISALLOW_COPY_AND_ASSIGN(RtcpBuilder); |
| 73 }; | 72 }; |
| 74 | 73 |
| 75 } // namespace transport | 74 } // namespace transport |
| 76 } // namespace cast | 75 } // namespace cast |
| 77 } // namespace media | 76 } // namespace media |
| 78 | 77 |
| 79 #endif // MEDIA_CAST_TRANSPORT_RTCP_RTCP_BUILDER_H_ | 78 #endif // MEDIA_CAST_TRANSPORT_RTCP_RTCP_BUILDER_H_ |
| OLD | NEW |