Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(24)

Side by Side Diff: webrtc/logging/rtc_event_log/rtc_event_log_unittest_helper.h

Issue 2851303007: Replace AudioReceiveStream::Config with rtclog::StreamConfig. (Closed)
Patch Set: Rebased. Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « webrtc/logging/rtc_event_log/rtc_event_log_unittest.cc ('k') | webrtc/logging/rtc_event_log/rtc_event_log_unittest_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698