Chromium Code Reviews| Index: webrtc/modules/rtp_rtcp/source/rtcp_packet.h |
| diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_packet.h b/webrtc/modules/rtp_rtcp/source/rtcp_packet.h |
| index 3ac66184bd21b08cb8573dec5499343ef8e1bae9..53715b2e6c0444f98dd154cc5c10407d72a029c3 100644 |
| --- a/webrtc/modules/rtp_rtcp/source/rtcp_packet.h |
| +++ b/webrtc/modules/rtp_rtcp/source/rtcp_packet.h |
| @@ -85,7 +85,6 @@ class RtcpPacket { |
| // Returns true if all calls to Create succeeded. A buffer of size |
| // IP_PACKET_SIZE will be allocated and reused between calls to callback. |
| bool Build(PacketReadyCallback* callback) const; |
| - |
|
åsapersson
2015/12/03 15:53:57
prefer keeping new line
sprang_webrtc
2015/12/03 16:02:22
Done.
|
| // Returns true if all calls to Create succeeded. Provided buffer reference |
| // will be used for all calls to callback. |
| bool BuildExternalBuffer(uint8_t* buffer, |
| @@ -116,14 +115,13 @@ class RtcpPacket { |
| size_t HeaderLength() const; |
| static const size_t kHeaderLength = 4; |
| + std::vector<RtcpPacket*> appended_packets_; |
| private: |
| bool CreateAndAddAppended(uint8_t* packet, |
| size_t* index, |
| size_t max_length, |
| PacketReadyCallback* callback) const; |
| - |
| - std::vector<RtcpPacket*> appended_packets_; |
| }; |
| // TODO(sprang): Move RtcpPacket subclasses out to separate files. |