Index: webrtc/logging/rtc_event_log/events/rtc_event_video_receive_stream_config.h |
diff --git a/webrtc/logging/rtc_event_log/events/rtc_event_video_receive_stream_config.h b/webrtc/logging/rtc_event_log/events/rtc_event_video_receive_stream_config.h |
index 2ba99460d7ebaaf604a798c95611151686136076..7d70bab3011e50127dd401b5eb0b34f97e491d7d 100644 |
--- a/webrtc/logging/rtc_event_log/events/rtc_event_video_receive_stream_config.h |
+++ b/webrtc/logging/rtc_event_log/events/rtc_event_video_receive_stream_config.h |
@@ -11,15 +11,25 @@ |
#ifndef WEBRTC_LOGGING_RTC_EVENT_LOG_EVENTS_RTC_EVENT_VIDEO_RECEIVE_STREAM_CONFIG_H_ |
#define WEBRTC_LOGGING_RTC_EVENT_LOG_EVENTS_RTC_EVENT_VIDEO_RECEIVE_STREAM_CONFIG_H_ |
+#include <memory> |
+ |
#include "webrtc/logging/rtc_event_log/events/rtc_event.h" |
namespace webrtc { |
+namespace rtclog { |
+struct StreamConfig; |
+} // namespace rtclog |
+ |
class RtcEventVideoReceiveStreamConfig final : public RtcEvent { |
public: |
- ~RtcEventVideoReceiveStreamConfig() override = default; |
+ explicit RtcEventVideoReceiveStreamConfig( |
+ std::unique_ptr<rtclog::StreamConfig> config); |
+ ~RtcEventVideoReceiveStreamConfig() override; |
Type GetType() const override; |
+ |
+ std::unique_ptr<rtclog::StreamConfig> config_; |
}; |
} // namespace webrtc |