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

Unified Diff: jingle/notifier/communicator/login.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/notifier/communicator/login.cc
diff --git a/jingle/notifier/communicator/login.cc b/jingle/notifier/communicator/login.cc
index 42fa0fcb4b420ad180b6c1672fe1f2b95fbe2518..5e71d76eb738e550596e31b547d36fee28a2a477 100644
--- a/jingle/notifier/communicator/login.cc
+++ b/jingle/notifier/communicator/login.cc
@@ -117,7 +117,7 @@ void Login::TryReconnect() {
VLOG(1) << "Reconnecting in "
<< reconnect_interval_.InSeconds() << " seconds";
reconnect_timer_.Start(
- reconnect_interval_, this, &Login::DoReconnect);
+ reconnect_interval_, this, &Login::DoReconnect, FROM_HERE);
delegate_->OnDisconnect();
}

Powered by Google App Engine
This is Rietveld 408576698