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

Unified Diff: webkit/quota/quota_temporary_storage_evictor.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: webkit/quota/quota_temporary_storage_evictor.cc
diff --git a/webkit/quota/quota_temporary_storage_evictor.cc b/webkit/quota/quota_temporary_storage_evictor.cc
index 8990331d60f98aa93af09c69d1dec64036884b50..eac023c7721217287a1a79576af598bfe0826a7f 100644
--- a/webkit/quota/quota_temporary_storage_evictor.cc
+++ b/webkit/quota/quota_temporary_storage_evictor.cc
@@ -129,14 +129,16 @@ void QuotaTemporaryStorageEvictor::Start() {
if (histogram_timer_.IsRunning())
return;
histogram_timer_.Start(kHistogramReportInterval, this,
- &QuotaTemporaryStorageEvictor::ReportPerHourHistogram);
+ &QuotaTemporaryStorageEvictor::ReportPerHourHistogram,
+ FROM_HERE);
}
void QuotaTemporaryStorageEvictor::StartEvictionTimerWithDelay(int delay_ms) {
if (eviction_timer_.IsRunning())
return;
eviction_timer_.Start(base::TimeDelta::FromMilliseconds(delay_ms), this,
- &QuotaTemporaryStorageEvictor::ConsiderEviction);
+ &QuotaTemporaryStorageEvictor::ConsiderEviction,
+ FROM_HERE);
}
void QuotaTemporaryStorageEvictor::ConsiderEviction() {

Powered by Google App Engine
This is Rietveld 408576698