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

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

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_rtcp_packet_outgoing.h
diff --git a/webrtc/logging/rtc_event_log/events/rtc_event_rtcp_packet_outgoing.h b/webrtc/logging/rtc_event_log/events/rtc_event_rtcp_packet_outgoing.h
index 55124644a75445cbf6881cfb4e8db6aef1638b9e..bf4d3bbf1531b8b3f28511e8ccb69e3ddc769f75 100644
--- a/webrtc/logging/rtc_event_log/events/rtc_event_rtcp_packet_outgoing.h
+++ b/webrtc/logging/rtc_event_log/events/rtc_event_rtcp_packet_outgoing.h
@@ -11,17 +11,22 @@
#ifndef WEBRTC_LOGGING_RTC_EVENT_LOG_EVENTS_RTC_EVENT_RTCP_PACKET_OUTGOING_H_
#define WEBRTC_LOGGING_RTC_EVENT_LOG_EVENTS_RTC_EVENT_RTCP_PACKET_OUTGOING_H_
+#include "webrtc/api/array_view.h"
#include "webrtc/logging/rtc_event_log/events/rtc_event.h"
+#include "webrtc/rtc_base/buffer.h"
namespace webrtc {
class RtcEventRtcpPacketOutgoing final : public RtcEvent {
public:
- ~RtcEventRtcpPacketOutgoing() override = default;
+ explicit RtcEventRtcpPacketOutgoing(rtc::ArrayView<const uint8_t> packet);
+ ~RtcEventRtcpPacketOutgoing() override;
Type GetType() const override;
bool IsConfigEvent() const override;
+
+ rtc::Buffer packet_;
};
} // namespace webrtc

Powered by Google App Engine
This is Rietveld 408576698