From 59ef6f0b5813ba7735091e65ed842f7f73d12dff Mon Sep 17 00:00:00 2001 From: Artem Titov Date: Tue, 7 Apr 2020 18:13:13 +0000 Subject: [PATCH] Revert "Disable dcheck on linux" This reverts commit 971c66c810276ce1b130613f59d2a621495b708c. Reason for revert: Speculative revert: breaks downstream project Original change's description: > Disable dcheck on linux > > Bug: webrtc:11490 > Change-Id: I731daa08378e861aeb51da3b819e3c472a9cad9b > No-Try: true > Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/172937 > Reviewed-by: Mirko Bonadei > Commit-Queue: Tommi > Cr-Commit-Position: refs/heads/master@{#31012} TBR=mbonadei@webrtc.org,tommi@webrtc.org Change-Id: I6bd026d65e307714a86f00e93a4ea8158b91592a No-Presubmit: true No-Tree-Checks: true No-Try: true Bug: webrtc:11490 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/173084 Reviewed-by: Artem Titov Commit-Queue: Artem Titov Cr-Commit-Position: refs/heads/master@{#31017} --- video/receive_statistics_proxy.cc | 3 --- 1 file changed, 3 deletions(-) diff --git a/video/receive_statistics_proxy.cc b/video/receive_statistics_proxy.cc index 5d16a7fb2f..223b94341d 100644 --- a/video/receive_statistics_proxy.cc +++ b/video/receive_statistics_proxy.cc @@ -652,10 +652,7 @@ void ReceiveStatisticsProxy::UpdateDecodeTimeHistograms( absl::optional ReceiveStatisticsProxy::GetCurrentEstimatedPlayoutNtpTimestampMs( int64_t now_ms) const { - // TODO(webrtc:11489): Update downstream tests. -#if !defined(WEBRTC_LINUX) RTC_DCHECK_RUN_ON(&main_thread_); -#endif if (!last_estimated_playout_ntp_timestamp_ms_ || !last_estimated_playout_time_ms_) { return absl::nullopt;