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

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

Issue 11419307: Garbage Collect the Storage directory on next profile start after an extension uninstall. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: done done Created 8 years 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
« no previous file with comments | « chrome/browser/extensions/extension_service_unittest.cc ('k') | chrome/common/pref_names.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/installed_loader.cc
diff --git a/chrome/browser/extensions/installed_loader.cc b/chrome/browser/extensions/installed_loader.cc
index f313772b3472b765b7f1f11debd0249ae76b19c8..408391583d85b91eb22484f9d4b0ec649b483283 100644
--- a/chrome/browser/extensions/installed_loader.cc
+++ b/chrome/browser/extensions/installed_loader.cc
@@ -152,9 +152,9 @@ void InstalledLoader::LoadAllExtensions() {
ExtensionInfo* info = extensions_info->at(i).get();
scoped_ptr<ExtensionInfo> pending_update(
- extension_prefs_->GetIdleInstallInfo(info->extension_id));
+ extension_prefs_->GetDelayedInstallInfo(info->extension_id));
if (pending_update) {
- if (!extension_prefs_->FinishIdleInstallInfo(info->extension_id))
+ if (!extension_prefs_->FinishDelayedInstallInfo(info->extension_id))
NOTREACHED();
Version old_version;
« no previous file with comments | « chrome/browser/extensions/extension_service_unittest.cc ('k') | chrome/common/pref_names.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698