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

Unified Diff: webrtc/libjingle/xmpp/pingtask.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/libjingle/xmpp/pingtask.cc
diff --git a/webrtc/libjingle/xmpp/pingtask.cc b/webrtc/libjingle/xmpp/pingtask.cc
index ad4566a51c3b7814825525bf0c74d6e981b4149e..46deb035dfec9d48085f2f69729d3eb506690010 100644
--- a/webrtc/libjingle/xmpp/pingtask.cc
+++ b/webrtc/libjingle/xmpp/pingtask.cc
@@ -77,8 +77,8 @@ int PingTask::ProcessStart() {
// Wake ourselves up when it's time to send another ping or when the ping
// times out (so we can fire a signal).
- message_queue_->PostDelayed(ping_timeout_millis_, this);
- message_queue_->PostDelayed(ping_period_millis_, this);
+ message_queue_->PostDelayed(FROM_HERE, ping_timeout_millis_, this);
+ message_queue_->PostDelayed(FROM_HERE, ping_period_millis_, this);
}
return STATE_BLOCKED;

Powered by Google App Engine
This is Rietveld 408576698