Preserve timestamp in DTLS writable event.

Bug: webrtc:10088
Change-Id: I63cd8cd3142c466c4ade74caee231a50fee8191e
Reviewed-on: https://webrtc-review.googlesource.com/c/113066
Reviewed-by: Zach Stein <zstein@webrtc.org>
Commit-Queue: Björn Terelius <terelius@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#25898}
This commit is contained in:
Bjorn Terelius
2018-12-04 18:04:51 +01:00
committed by Commit Bot
parent 7e0299e245
commit a713505c18

View File

@ -19,7 +19,7 @@ RtcEventDtlsWritableState::RtcEventDtlsWritableState(bool writable)
RtcEventDtlsWritableState::RtcEventDtlsWritableState( RtcEventDtlsWritableState::RtcEventDtlsWritableState(
const RtcEventDtlsWritableState& other) const RtcEventDtlsWritableState& other)
: writable_(other.writable_) {} : RtcEvent(other.timestamp_us_), writable_(other.writable_) {}
RtcEventDtlsWritableState::~RtcEventDtlsWritableState() = default; RtcEventDtlsWritableState::~RtcEventDtlsWritableState() = default;