| Index: webrtc/logging/rtc_event_log/mock/mock_rtc_event_log.h
|
| diff --git a/webrtc/logging/rtc_event_log/mock/mock_rtc_event_log.h b/webrtc/logging/rtc_event_log/mock/mock_rtc_event_log.h
|
| index 4db33a13ec6b6bb5c3bf215702b88e79095663ae..c819bcff5926606b6a7973691302f8fc51cd94b5 100644
|
| --- a/webrtc/logging/rtc_event_log/mock/mock_rtc_event_log.h
|
| +++ b/webrtc/logging/rtc_event_log/mock/mock_rtc_event_log.h
|
| @@ -46,6 +46,13 @@ class MockRtcEventLog : public RtcEventLog {
|
| const uint8_t* header,
|
| size_t packet_length));
|
|
|
| + MOCK_METHOD5(LogRtpHeader,
|
| + void(PacketDirection direction,
|
| + MediaType media_type,
|
| + const uint8_t* header,
|
| + size_t packet_length,
|
| + int probe_cluster_id));
|
| +
|
| MOCK_METHOD4(LogRtcpPacket,
|
| void(PacketDirection direction,
|
| MediaType media_type,
|
| @@ -60,6 +67,13 @@ class MockRtcEventLog : public RtcEventLog {
|
| int32_t total_packets));
|
| MOCK_METHOD1(LogAudioNetworkAdaptation,
|
| void(const AudioNetworkAdaptor::EncoderRuntimeConfig& config));
|
| +
|
| + MOCK_METHOD4(LogProbeClusterCreated,
|
| + void(int id, int bitrate_bps, int min_probes, int min_bytes));
|
| +
|
| + MOCK_METHOD2(LogProbeResultSuccess, void(int id, int bitrate_bps));
|
| + MOCK_METHOD2(LogProbeResultFailure,
|
| + void(int id, ProbeFailureReason failure_reason));
|
| };
|
|
|
| } // namespace webrtc
|
|
|