| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
| 5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
| 6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ | 9 */ |
| 10 | 10 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 static void VerifyVideoReceiveStreamConfig( | 21 static void VerifyVideoReceiveStreamConfig( |
| 22 const ParsedRtcEventLog& parsed_log, | 22 const ParsedRtcEventLog& parsed_log, |
| 23 size_t index, | 23 size_t index, |
| 24 const rtclog::StreamConfig& config); | 24 const rtclog::StreamConfig& config); |
| 25 static void VerifyVideoSendStreamConfig(const ParsedRtcEventLog& parsed_log, | 25 static void VerifyVideoSendStreamConfig(const ParsedRtcEventLog& parsed_log, |
| 26 size_t index, | 26 size_t index, |
| 27 const rtclog::StreamConfig& config); | 27 const rtclog::StreamConfig& config); |
| 28 static void VerifyAudioReceiveStreamConfig( | 28 static void VerifyAudioReceiveStreamConfig( |
| 29 const ParsedRtcEventLog& parsed_log, | 29 const ParsedRtcEventLog& parsed_log, |
| 30 size_t index, | 30 size_t index, |
| 31 const AudioReceiveStream::Config& config); | 31 const rtclog::StreamConfig& config); |
| 32 static void VerifyAudioSendStreamConfig( | 32 static void VerifyAudioSendStreamConfig( |
| 33 const ParsedRtcEventLog& parsed_log, | 33 const ParsedRtcEventLog& parsed_log, |
| 34 size_t index, | 34 size_t index, |
| 35 const AudioSendStream::Config& config); | 35 const AudioSendStream::Config& config); |
| 36 static void VerifyRtpEvent(const ParsedRtcEventLog& parsed_log, | 36 static void VerifyRtpEvent(const ParsedRtcEventLog& parsed_log, |
| 37 size_t index, | 37 size_t index, |
| 38 PacketDirection direction, | 38 PacketDirection direction, |
| 39 MediaType media_type, | 39 MediaType media_type, |
| 40 const uint8_t* header, | 40 const uint8_t* header, |
| 41 size_t header_size, | 41 size_t header_size, |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 | 83 |
| 84 static void VerifyProbeResultFailure(const ParsedRtcEventLog& parsed_log, | 84 static void VerifyProbeResultFailure(const ParsedRtcEventLog& parsed_log, |
| 85 size_t index, | 85 size_t index, |
| 86 uint32_t id, | 86 uint32_t id, |
| 87 ProbeFailureReason failure_reason); | 87 ProbeFailureReason failure_reason); |
| 88 }; | 88 }; |
| 89 | 89 |
| 90 } // namespace webrtc | 90 } // namespace webrtc |
| 91 | 91 |
| 92 #endif // WEBRTC_LOGGING_RTC_EVENT_LOG_RTC_EVENT_LOG_UNITTEST_HELPER_H_ | 92 #endif // WEBRTC_LOGGING_RTC_EVENT_LOG_RTC_EVENT_LOG_UNITTEST_HELPER_H_ |
| OLD | NEW |