| Index: webrtc/logging/rtc_event_log/events/rtc_event_video_send_stream_config.h
|
| diff --git a/webrtc/logging/rtc_event_log/events/rtc_event_video_send_stream_config.h b/webrtc/logging/rtc_event_log/events/rtc_event_video_send_stream_config.h
|
| index d291143fd589321029333648207c08cf8537be76..f664645e2f11ada1da4d405927740a9ff6ebbbca 100644
|
| --- a/webrtc/logging/rtc_event_log/events/rtc_event_video_send_stream_config.h
|
| +++ b/webrtc/logging/rtc_event_log/events/rtc_event_video_send_stream_config.h
|
| @@ -11,17 +11,24 @@
|
| #ifndef WEBRTC_LOGGING_RTC_EVENT_LOG_EVENTS_RTC_EVENT_VIDEO_SEND_STREAM_CONFIG_H_
|
| #define WEBRTC_LOGGING_RTC_EVENT_LOG_EVENTS_RTC_EVENT_VIDEO_SEND_STREAM_CONFIG_H_
|
|
|
| +#include <memory>
|
| +
|
| #include "webrtc/logging/rtc_event_log/events/rtc_event.h"
|
| +#include "webrtc/logging/rtc_event_log/rtc_stream_config.h"
|
|
|
| namespace webrtc {
|
|
|
| class RtcEventVideoSendStreamConfig final : public RtcEvent {
|
| public:
|
| - ~RtcEventVideoSendStreamConfig() override = default;
|
| + explicit RtcEventVideoSendStreamConfig(
|
| + std::unique_ptr<rtclog::StreamConfig> config);
|
| + ~RtcEventVideoSendStreamConfig() override;
|
|
|
| Type GetType() const override;
|
|
|
| bool IsConfigEvent() const override;
|
| +
|
| + const std::unique_ptr<const rtclog::StreamConfig> config_;
|
| };
|
|
|
| } // namespace webrtc
|
|
|