Index: webrtc/logging/rtc_event_log/rtc_event_log.h |
diff --git a/webrtc/logging/rtc_event_log/rtc_event_log.h b/webrtc/logging/rtc_event_log/rtc_event_log.h |
index fb64e94005385e6387874c39d1b0ac817360fb07..8e8bd827c70a6cdb31d807dcdd1643f567b26dec 100644 |
--- a/webrtc/logging/rtc_event_log/rtc_event_log.h |
+++ b/webrtc/logging/rtc_event_log/rtc_event_log.h |
@@ -119,9 +119,9 @@ class RtcEventLog { |
// Logs configuration information for a video send stream. |
virtual void LogVideoSendStreamConfig(const rtclog::StreamConfig& config) = 0; |
- // Logs configuration information for webrtc::AudioReceiveStream. |
+ // Logs configuration information for an audio receive stream. |
virtual void LogAudioReceiveStreamConfig( |
- const webrtc::AudioReceiveStream::Config& config) = 0; |
+ const rtclog::StreamConfig& config) = 0; |
// Logs configuration information for webrtc::AudioSendStream. |
virtual void LogAudioSendStreamConfig( |
@@ -202,7 +202,7 @@ class RtcEventLogNullImpl final : public RtcEventLog { |
const rtclog::StreamConfig& config) override {} |
void LogVideoSendStreamConfig(const rtclog::StreamConfig& config) override {} |
void LogAudioReceiveStreamConfig( |
- const AudioReceiveStream::Config& config) override {} |
+ const rtclog::StreamConfig& config) override {} |
void LogAudioSendStreamConfig( |
const AudioSendStream::Config& config) override {} |
void LogRtpHeader(PacketDirection direction, |