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

Unified Diff: webrtc/logging/rtc_event_log/events/rtc_event_rtp_header_incoming.h

Issue 3012923002: Add the internals of RtcEvent's subclasses (Closed)
Patch Set: 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_rtp_header_incoming.h
diff --git a/webrtc/logging/rtc_event_log/events/rtc_event_rtp_header_incoming.h b/webrtc/logging/rtc_event_log/events/rtc_event_rtp_header_incoming.h
index f436cd3f01cff5130702edcd698ca03f1a70cd37..c373fccfcfb22e37dffc331fadff50d095551f7d 100644
--- a/webrtc/logging/rtc_event_log/events/rtc_event_rtp_header_incoming.h
+++ b/webrtc/logging/rtc_event_log/events/rtc_event_rtp_header_incoming.h
@@ -11,15 +11,22 @@
#ifndef WEBRTC_LOGGING_RTC_EVENT_LOG_EVENTS_RTC_EVENT_RTP_HEADER_INCOMING_H_
#define WEBRTC_LOGGING_RTC_EVENT_LOG_EVENTS_RTC_EVENT_RTP_HEADER_INCOMING_H_
+#include <memory>
+
#include "webrtc/logging/rtc_event_log/events/rtc_event.h"
namespace webrtc {
+class RtpPacketReceived;
+
class RtcEventRtpHeaderIncoming final : public RtcEvent {
public:
- ~RtcEventRtpHeaderIncoming() override = default;
+ explicit RtcEventRtpHeaderIncoming(std::unique_ptr<RtpPacketReceived> packet);
+ ~RtcEventRtpHeaderIncoming() override;
Type GetType() const override;
+
+ std::unique_ptr<RtpPacketReceived> packet_;
};
} // namespace webrtc

Powered by Google App Engine
This is Rietveld 408576698