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

Unified Diff: jingle/glue/pseudotcp_adapter.cc

Issue 7812036: Update base/timer.h code to pass through Location from call sites. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 4 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: jingle/glue/pseudotcp_adapter.cc
diff --git a/jingle/glue/pseudotcp_adapter.cc b/jingle/glue/pseudotcp_adapter.cc
index a34ddd539389b447d65bb7889bde02b85bcf7fd3..3af46dc2faaad24750e480f7f32a8ece6b8d5a40 100644
--- a/jingle/glue/pseudotcp_adapter.cc
+++ b/jingle/glue/pseudotcp_adapter.cc
@@ -370,7 +370,7 @@ void PseudoTcpAdapter::Core::AdjustClock() {
if (pseudo_tcp_.GetNextClock(PseudoTcp::Now(), timeout)) {
timer_.Stop();
timer_.Start(base::TimeDelta::FromMilliseconds(std::max(timeout, 0L)), this,
- &PseudoTcpAdapter::Core::HandleTcpClock);
+ &PseudoTcpAdapter::Core::HandleTcpClock, FROM_HERE);
}
}

Powered by Google App Engine
This is Rietveld 408576698