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

Unified Diff: webrtc/p2p/base/relayserver.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/p2p/base/relayport.cc ('k') | webrtc/p2p/base/stunrequest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/p2p/base/relayserver.cc
diff --git a/webrtc/p2p/base/relayserver.cc b/webrtc/p2p/base/relayserver.cc
index ebe46c48c6a09abbe82503508b5b57841d06f48d..0c6df77502dafbc4b65664cecbe514ac91e11ee8 100644
--- a/webrtc/p2p/base/relayserver.cc
+++ b/webrtc/p2p/base/relayserver.cc
@@ -668,7 +668,8 @@ RelayServerBinding::RelayServerBinding(RelayServer* server,
NoteUsed();
// Set the first timeout check.
- server_->thread()->PostDelayed(lifetime_, this, MSG_LIFETIME_TIMER);
+ server_->thread()->PostDelayed(RTC_FROM_HERE, lifetime_, this,
+ MSG_LIFETIME_TIMER);
}
RelayServerBinding::~RelayServerBinding() {
@@ -739,7 +740,8 @@ void RelayServerBinding::OnMessage(rtc::Message *pmsg) {
LOG(LS_INFO) << "Expiring binding " << username_;
SignalTimeout(this);
} else {
- server_->thread()->PostDelayed(lifetime_, this, MSG_LIFETIME_TIMER);
+ server_->thread()->PostDelayed(RTC_FROM_HERE, lifetime_, this,
+ MSG_LIFETIME_TIMER);
}
} else {
« no previous file with comments | « webrtc/p2p/base/relayport.cc ('k') | webrtc/p2p/base/stunrequest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698