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

Unified Diff: chrome/browser/process_singleton_linux.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: chrome/browser/process_singleton_linux.cc
diff --git a/chrome/browser/process_singleton_linux.cc b/chrome/browser/process_singleton_linux.cc
index 9055e59f27eb77c48dabe130127698791691249c..ccf05074bfab1e491a6c5a771670a9b8dacee43f 100644
--- a/chrome/browser/process_singleton_linux.cc
+++ b/chrome/browser/process_singleton_linux.cc
@@ -471,7 +471,7 @@ class ProcessSingleton::LinuxWatcher
MessageLoopForIO::current()->WatchFileDescriptor(
fd, true, MessageLoopForIO::WATCH_READ, &fd_reader_, this);
timer_.Start(base::TimeDelta::FromSeconds(kTimeoutInSeconds),
- this, &SocketReader::OnTimerExpiry);
+ this, &SocketReader::OnTimerExpiry, FROM_HERE);
}
virtual ~SocketReader() {

Powered by Google App Engine
This is Rietveld 408576698