| Index: logging/rtc_event_log/rtc_event_log_unittest_helper.h
|
| diff --git a/logging/rtc_event_log/rtc_event_log_unittest_helper.h b/logging/rtc_event_log/rtc_event_log_unittest_helper.h
|
| index 29031ed5f9c46bf0fdf7bef7cc8fa73647c77287..630f160a1852d49afeff8fcf3fe0e74c73d2e1da 100644
|
| --- a/logging/rtc_event_log/rtc_event_log_unittest_helper.h
|
| +++ b/logging/rtc_event_log/rtc_event_log_unittest_helper.h
|
| @@ -13,6 +13,8 @@
|
|
|
| #include "call/call.h"
|
| #include "logging/rtc_event_log/rtc_event_log_parser.h"
|
| +#include "modules/rtp_rtcp/source/rtp_packet_received.h"
|
| +#include "modules/rtp_rtcp/source/rtp_packet_to_send.h"
|
|
|
| namespace webrtc {
|
|
|
| @@ -32,12 +34,12 @@ class RtcEventLogTestHelper {
|
| static void VerifyAudioSendStreamConfig(const ParsedRtcEventLog& parsed_log,
|
| size_t index,
|
| const rtclog::StreamConfig& config);
|
| - static void VerifyRtpEvent(const ParsedRtcEventLog& parsed_log,
|
| - size_t index,
|
| - PacketDirection direction,
|
| - const uint8_t* header,
|
| - size_t header_size,
|
| - size_t total_size);
|
| + static void VerifyIncomingRtpEvent(const ParsedRtcEventLog& parsed_log,
|
| + size_t index,
|
| + const RtpPacketReceived& expected_packet);
|
| + static void VerifyOutgoingRtpEvent(const ParsedRtcEventLog& parsed_log,
|
| + size_t index,
|
| + const RtpPacketToSend& expected_packet);
|
| static void VerifyRtcpEvent(const ParsedRtcEventLog& parsed_log,
|
| size_t index,
|
| PacketDirection direction,
|
|
|