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

Unified Diff: webrtc/logging/rtc_event_log/events/rtc_event_logging_started.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_logging_started.h
diff --git a/webrtc/logging/rtc_event_log/events/rtc_event_logging_started.h b/webrtc/logging/rtc_event_log/events/rtc_event_logging_started.h
index e2acd867c188b6701543f7877a21e51005a0c88c..3e6c3514ddf63312c624d4eba26d01135390f5f4 100644
--- a/webrtc/logging/rtc_event_log/events/rtc_event_logging_started.h
+++ b/webrtc/logging/rtc_event_log/events/rtc_event_logging_started.h
@@ -12,14 +12,18 @@
#define WEBRTC_LOGGING_RTC_EVENT_LOG_EVENTS_RTC_EVENT_LOGGING_STARTED_H_
#include "webrtc/logging/rtc_event_log/events/rtc_event.h"
+#include "webrtc/typedefs.h"
namespace webrtc {
class RtcEventLoggingStarted final : public RtcEvent {
public:
+ explicit RtcEventLoggingStarted(int64_t timestamp_us);
~RtcEventLoggingStarted() override = default;
Type GetType() const override;
+
+ int64_t timestamp_us_;
};
} // namespace webrtc

Powered by Google App Engine
This is Rietveld 408576698