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

Unified Diff: content/browser/download/download_item.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: content/browser/download/download_item.cc
diff --git a/content/browser/download/download_item.cc b/content/browser/download/download_item.cc
index eefb8ddd2a844afa34f5dcb85a7087503336716c..643e3077d0cb443fc2be33330986ff98e1db8ee1 100644
--- a/content/browser/download/download_item.cc
+++ b/content/browser/download/download_item.cc
@@ -326,7 +326,7 @@ void DownloadItem::StartProgressTimer() {
CHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
update_timer_.Start(base::TimeDelta::FromMilliseconds(kUpdateTimeMs), this,
- &DownloadItem::UpdateObservers);
+ &DownloadItem::UpdateObservers, FROM_HERE);
}
void DownloadItem::StopProgressTimer() {

Powered by Google App Engine
This is Rietveld 408576698