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

Unified Diff: webrtc/examples/peerconnection/client/peer_connection_client.cc

Issue 2019423006: Adding more detail to MessageQueue::Dispatch logging. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Fixing one more place where RTC_FROM_HERE wasn't used. Created 4 years, 6 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
« no previous file with comments | « webrtc/base/worker.cc ('k') | webrtc/libjingle/xmpp/pingtask.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/examples/peerconnection/client/peer_connection_client.cc
diff --git a/webrtc/examples/peerconnection/client/peer_connection_client.cc b/webrtc/examples/peerconnection/client/peer_connection_client.cc
index 86d21193fd37c27ad65f8d210d65ccab0a02b3fb..7796220db4d316a2d3f114a6e132416af81f3ab4 100644
--- a/webrtc/examples/peerconnection/client/peer_connection_client.cc
+++ b/webrtc/examples/peerconnection/client/peer_connection_client.cc
@@ -500,7 +500,8 @@ void PeerConnectionClient::OnClose(rtc::AsyncSocket* socket, int err) {
} else {
if (socket == control_socket_.get()) {
LOG(WARNING) << "Connection refused; retrying in 2 seconds";
- rtc::Thread::Current()->PostDelayed(kReconnectDelay, this, 0);
+ rtc::Thread::Current()->PostDelayed(RTC_FROM_HERE, kReconnectDelay, this,
+ 0);
} else {
Close();
callback_->OnDisconnected();
« no previous file with comments | « webrtc/base/worker.cc ('k') | webrtc/libjingle/xmpp/pingtask.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698