Chromium Code Reviews| Index: webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl_unittest.cc |
| diff --git a/webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl_unittest.cc b/webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl_unittest.cc |
| index 75e2dc17d1e51be6f6fb715905003b4a6a886beb..c3bb1caf643f94431eee16eb1e682e04ae6e8fc0 100644 |
| --- a/webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl_unittest.cc |
| +++ b/webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl_unittest.cc |
| @@ -50,7 +50,7 @@ class RtcpRttStatsTestImpl : public RtcpRttStats { |
| }; |
| class SendTransport : public Transport, |
| - public NullRtpData { |
| + public RtpData { |
| public: |
| SendTransport() |
| : receiver_(NULL), |
| @@ -88,6 +88,11 @@ class SendTransport : public Transport, |
| EXPECT_EQ(0, receiver_->IncomingRtcpPacket(data, len)); |
| return true; |
| } |
| + int OnReceivedPayloadData(const uint8_t* payload_data, |
|
danilchap
2017/05/31 12:59:28
return type is int32_t
nisse-webrtc
2017/05/31 13:24:13
Done.
|
| + size_t payload_size, |
| + const WebRtcRTPHeader* rtp_header) override { |
| + return 0; |
| + } |
| ModuleRtpRtcpImpl* receiver_; |
| SimulatedClock* clock_; |
| int64_t delay_ms_; |