| Index: webrtc/logging/rtc_event_log/rtc_event_log.cc
|
| diff --git a/webrtc/logging/rtc_event_log/rtc_event_log.cc b/webrtc/logging/rtc_event_log/rtc_event_log.cc
|
| index ae2052cac7ca0dec0952ed0777aaafe1d9e5fe26..5545028054b13f3c581e5fca7405cad5ba53fc83 100644
|
| --- a/webrtc/logging/rtc_event_log/rtc_event_log.cc
|
| +++ b/webrtc/logging/rtc_event_log/rtc_event_log.cc
|
| @@ -106,6 +106,7 @@ class RtcEventLogImpl final : public RtcEventLog {
|
| bool StartLogging(rtc::PlatformFile platform_file,
|
| int64_t max_size_bytes) override;
|
| void StopLogging() override;
|
| + void LogRtcEvent(std::unique_ptr<RtcEvent> event) override;
|
| void LogVideoReceiveStreamConfig(const rtclog::StreamConfig& config) override;
|
| void LogVideoSendStreamConfig(const rtclog::StreamConfig& config) override;
|
| void LogAudioReceiveStreamConfig(const rtclog::StreamConfig& config) override;
|
| @@ -327,6 +328,8 @@ void RtcEventLogImpl::StopLogging() {
|
| LOG(LS_INFO) << "WebRTC event log successfully stopped.";
|
| }
|
|
|
| +void RtcEventLogImpl::LogRtcEvent(std::unique_ptr<RtcEvent> event) {}
|
| +
|
| void RtcEventLogImpl::LogVideoReceiveStreamConfig(
|
| const rtclog::StreamConfig& config) {
|
| std::unique_ptr<rtclog::Event> event(new rtclog::Event());
|
|
|