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

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: rebase again Created 7 years, 7 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..bd34b1f46dd22a1735c5eb8afceb11020cd31331 100644
--- a/chrome/browser/extensions/extensions_quota_service.cc
+++ b/chrome/browser/extensions/extensions_quota_service.cc
@@ -21,7 +21,7 @@ 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);

Powered by Google App Engine
This is Rietveld 408576698