Add accessor for UTC start time in event log

Bug: webrtc:11933
Change-Id: Id9e63dc0487d5d07ac87e319695206ee4cd627e8
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/219787
Reviewed-by: Sebastian Jansson <srte@webrtc.org>
Commit-Queue: Björn Terelius <terelius@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#34079}
This commit is contained in:
Björn Terelius
2021-05-21 15:02:07 +02:00
committed by WebRTC LUCI CQ
parent 00f6e75671
commit 61a287a3cb

View File

@ -249,6 +249,8 @@ struct LoggedStartEvent {
int64_t log_time_us() const { return timestamp_us; }
int64_t log_time_ms() const { return timestamp_us / 1000; }
Timestamp utc_time() const { return Timestamp::Millis(utc_start_time_ms); }
int64_t timestamp_us;
int64_t utc_start_time_ms;
};