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

Unified Diff: webrtc/p2p/quic/quicconnectionhelper.cc

Issue 2019423006: Adding more detail to MessageQueue::Dispatch logging. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 7 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/p2p/quic/quicconnectionhelper.cc
diff --git a/webrtc/p2p/quic/quicconnectionhelper.cc b/webrtc/p2p/quic/quicconnectionhelper.cc
index f9b4697d50a148470b0534e34c4078c0ba721ca6..f22b5621479be2e504c5b55ec64be1e1cc7d4576 100644
--- a/webrtc/p2p/quic/quicconnectionhelper.cc
+++ b/webrtc/p2p/quic/quicconnectionhelper.cc
@@ -59,7 +59,7 @@ void QuicAlarm::SetImpl() {
if (delay_ms < 0) {
delay_ms = 0;
}
- thread_->PostDelayed(delay_ms, this);
+ thread_->PostDelayed(FROM_HERE, delay_ms, this);
}
void QuicAlarm::CancelImpl() {

Powered by Google App Engine
This is Rietveld 408576698