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

Unified Diff: chrome/browser/extensions/extensions_quota_service.cc

Issue 14113053: chrome: Use base::MessageLoop. (Part 3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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/extensions/extensions_quota_service.cc
diff --git a/chrome/browser/extensions/extensions_quota_service.cc b/chrome/browser/extensions/extensions_quota_service.cc
index 6b267a5394ec62960add77c2af8cd81a3a134012..1a3d8b4f4b09f664e89953ee828af85ac821cb7e 100644
--- a/chrome/browser/extensions/extensions_quota_service.cc
+++ b/chrome/browser/extensions/extensions_quota_service.cc
@@ -21,10 +21,11 @@ const char kOverQuotaError[] = "This request exceeds the * quota.";
} // namespace
ExtensionsQuotaService::ExtensionsQuotaService() {
- if (MessageLoop::current() != NULL) { // Null in unit tests.
+ if (base::MessageLoop::current() != NULL) { // Null in unit tests.
purge_timer_.Start(FROM_HERE,
base::TimeDelta::FromDays(kPurgeIntervalInDays),
- this, &ExtensionsQuotaService::Purge);
+ this,
brettw 2013/04/28 04:26:27 Ditto
+ &ExtensionsQuotaService::Purge);
}
}

Powered by Google App Engine
This is Rietveld 408576698