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

Unified Diff: webrtc/p2p/stunprober/stunprober.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/quic/quicconnectionhelper.cc ('k') | webrtc/pc/audiomonitor.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/p2p/stunprober/stunprober.cc
diff --git a/webrtc/p2p/stunprober/stunprober.cc b/webrtc/p2p/stunprober/stunprober.cc
index 90dc60e1514a8f25556f1bdb68d181859c17729e..f32a2002fb0fed3069f01671ca15ec32ba42a137 100644
--- a/webrtc/p2p/stunprober/stunprober.cc
+++ b/webrtc/p2p/stunprober/stunprober.cc
@@ -323,7 +323,7 @@ void StunProber::OnServerResolved(rtc::AsyncResolverInterface* resolver) {
// Deletion of AsyncResolverInterface can't be done in OnResolveResult which
// handles SignalDone.
invoker_.AsyncInvoke<void>(
- thread_,
+ RTC_FROM_HERE, thread_,
rtc::Bind(&rtc::AsyncResolverInterface::Destroy, resolver, false));
servers_.pop_back();
@@ -418,8 +418,8 @@ void StunProber::MaybeScheduleStunRequests() {
if (Done()) {
invoker_.AsyncInvokeDelayed<void>(
- thread_, rtc::Bind(&StunProber::ReportOnFinished, this, SUCCESS),
- timeout_ms_);
+ RTC_FROM_HERE, thread_,
+ rtc::Bind(&StunProber::ReportOnFinished, this, SUCCESS), timeout_ms_);
return;
}
if (should_send_next_request(now)) {
@@ -430,7 +430,8 @@ void StunProber::MaybeScheduleStunRequests() {
next_request_time_ms_ = now + interval_ms_;
}
invoker_.AsyncInvokeDelayed<void>(
- thread_, rtc::Bind(&StunProber::MaybeScheduleStunRequests, this),
+ RTC_FROM_HERE, thread_,
+ rtc::Bind(&StunProber::MaybeScheduleStunRequests, this),
get_wake_up_interval_ms());
}
« no previous file with comments | « webrtc/p2p/quic/quicconnectionhelper.cc ('k') | webrtc/pc/audiomonitor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698