| 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 8e8bd827c70a6cdb31d807dcdd1643f567b26dec..3f96556d8a56c29905ac56b4417df204973f5d96 100644
|
| --- a/webrtc/logging/rtc_event_log/rtc_event_log.h
|
| +++ b/webrtc/logging/rtc_event_log/rtc_event_log.h
|
| @@ -123,9 +123,8 @@ class RtcEventLog {
|
| virtual void LogAudioReceiveStreamConfig(
|
| const rtclog::StreamConfig& config) = 0;
|
|
|
| - // Logs configuration information for webrtc::AudioSendStream.
|
| - virtual void LogAudioSendStreamConfig(
|
| - const webrtc::AudioSendStream::Config& config) = 0;
|
| + // Logs configuration information for an audio send stream.
|
| + virtual void LogAudioSendStreamConfig(const rtclog::StreamConfig& config) = 0;
|
|
|
| // Logs the header of an incoming or outgoing RTP packet. packet_length
|
| // is the total length of the packet, including both header and payload.
|
| @@ -203,8 +202,7 @@ class RtcEventLogNullImpl final : public RtcEventLog {
|
| void LogVideoSendStreamConfig(const rtclog::StreamConfig& config) override {}
|
| void LogAudioReceiveStreamConfig(
|
| const rtclog::StreamConfig& config) override {}
|
| - void LogAudioSendStreamConfig(
|
| - const AudioSendStream::Config& config) override {}
|
| + void LogAudioSendStreamConfig(const rtclog::StreamConfig& config) override {}
|
| void LogRtpHeader(PacketDirection direction,
|
| MediaType media_type,
|
| const uint8_t* header,
|
|
|