| Index: webrtc/logging/rtc_event_log/events/rtc_event_audio_receive_stream_config.cc
|
| diff --git a/webrtc/logging/rtc_event_log/events/rtc_event_audio_receive_stream_config.cc b/webrtc/logging/rtc_event_log/events/rtc_event_audio_receive_stream_config.cc
|
| index 994c56993097b7efbd578aafe85a085597c5eba7..72854f72cdc18fc66763eef4f03a755deb508fa0 100644
|
| --- a/webrtc/logging/rtc_event_log/events/rtc_event_audio_receive_stream_config.cc
|
| +++ b/webrtc/logging/rtc_event_log/events/rtc_event_audio_receive_stream_config.cc
|
| @@ -10,8 +10,18 @@
|
|
|
| #include "webrtc/logging/rtc_event_log/events/rtc_event_audio_receive_stream_config.h"
|
|
|
| +#include <utility>
|
| +
|
| +#include "webrtc/logging/rtc_event_log/rtc_stream_config.h"
|
| +
|
| namespace webrtc {
|
|
|
| +RtcEventAudioReceiveStreamConfig::RtcEventAudioReceiveStreamConfig(
|
| + std::unique_ptr<rtclog::StreamConfig> config)
|
| + : config_(std::move(config)) {}
|
| +
|
| +RtcEventAudioReceiveStreamConfig::~RtcEventAudioReceiveStreamConfig() = default;
|
| +
|
| RtcEvent::Type RtcEventAudioReceiveStreamConfig::GetType() const {
|
| return RtcEvent::Type::AudioReceiveStreamConfig;
|
| }
|
|
|