Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(115)

Unified Diff: webrtc/logging/rtc_event_log/events/rtc_event_video_send_stream_config.cc

Issue 3012923002: Add the internals of RtcEvent's subclasses (Closed)
Patch Set: Rebased Created 3 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/logging/rtc_event_log/events/rtc_event_video_send_stream_config.cc
diff --git a/webrtc/logging/rtc_event_log/events/rtc_event_video_send_stream_config.cc b/webrtc/logging/rtc_event_log/events/rtc_event_video_send_stream_config.cc
index 0d27907dec7874a4fc5a2b57999f9aa74fc7ec38..70df71051548e3f62c9a21c5b3ec5acbc29b59ea 100644
--- a/webrtc/logging/rtc_event_log/events/rtc_event_video_send_stream_config.cc
+++ b/webrtc/logging/rtc_event_log/events/rtc_event_video_send_stream_config.cc
@@ -10,8 +10,16 @@
#include "webrtc/logging/rtc_event_log/events/rtc_event_video_send_stream_config.h"
+#include <utility>
+
namespace webrtc {
+RtcEventVideoSendStreamConfig::RtcEventVideoSendStreamConfig(
+ std::unique_ptr<rtclog::StreamConfig> config)
+ : config_(std::move(config)) {}
+
+RtcEventVideoSendStreamConfig::~RtcEventVideoSendStreamConfig() = default;
+
RtcEvent::Type RtcEventVideoSendStreamConfig::GetType() const {
return RtcEvent::Type::VideoSendStreamConfig;
}
« no previous file with comments | « webrtc/logging/rtc_event_log/events/rtc_event_video_send_stream_config.h ('k') | webrtc/logging/rtc_event_log/rtc_event_log.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698