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

Unified Diff: chrome/browser/extensions/extension_garbage_collector.h

Issue 204983020: Remove ExtensionService Garbage-Collecting methods. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 9 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/extension_garbage_collector.h
diff --git a/chrome/browser/extensions/extension_garbage_collector.h b/chrome/browser/extensions/extension_garbage_collector.h
new file mode 100644
index 0000000000000000000000000000000000000000..d7989bfcbe0719f19e6e38e16031d5a2cfd8b10d
--- /dev/null
+++ b/chrome/browser/extensions/extension_garbage_collector.h
@@ -0,0 +1,89 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_GARBAGE_COLLECTOR_H_
+#define CHROME_BROWSER_EXTENSIONS_EXTENSION_GARBAGE_COLLECTOR_H_
+
+#include <map>
+#include <string>
+
+#include "base/files/file_path.h"
+#include "base/memory/weak_ptr.h"
+
+namespace content {
+class BrowserContext;
+}
+
+class ExtensionService;
+
+namespace extensions {
+
+// The class responsible for cleaning up the cruft left behind on the file
+// system by uninstalled (or failed install) extensions.
+// The class is owned by ExtensionService, but is mostly independent. Tasks to
+// garbage collect extensions and isolated storage are posted once the
+// ExtensionSystem signals ready.
+class ExtensionGarbageCollector {
+ public:
+ explicit ExtensionGarbageCollector(ExtensionService* extension_service);
+ ~ExtensionGarbageCollector();
+
+#if defined(OS_CHROMEOS)
+ // Enable or disable garbage collection. See |disable_garbage_collection_|.
+ void disable_garbage_collection() { disable_garbage_collection_ = true; }
+ void enable_garbage_collection() { disable_garbage_collection_ = false; }
+#endif
+
+ // Call GarbageCollectExtensions(). Used only in tests.
Yoyo Zhou 2014/03/26 01:54:12 nit: this comment is redundant. Maybe say "manuall
Devlin 2014/03/26 23:56:32 Done.
+ void GarbageCollectExtensionsForTest();
+
+ private:
+ // Cleans up the extension install directory. It can end up with garbage in it
+ // if extensions can't initially be removed when they are uninstalled (eg if a
+ // file is in use).
+ // Obsolete version directories are removed, as are directories that aren't
+ // found in the ExtensionPrefs.
+ // The "Temp" directory that is used during extension installation will get
+ // removed iff there are no pending installations.
+ void GarbageCollectExtensions();
+
+ // The FILE-thread implementation of GarbageCollectEtxensions().
Yoyo Zhou 2014/03/26 01:54:12 typo
Devlin 2014/03/26 23:56:32 Done.
+ void GarbageCollectExtensionsOnFileThread(
+ const std::multimap<std::string, base::FilePath>& extension_paths,
+ bool clean_temp_dir);
+
+ // Garbage collects apps/extensions isolated storage, if it is not currently
+ // active (i.e. is not in ExtensionRegistry::ENABLED or does not have
Yoyo Zhou 2014/03/26 01:54:12 I'm confused by the "does not have isolated storag
Devlin 2014/03/26 23:56:32 Ah, yes, my parentheses were off. Presumably, tha
+ // isolated storage). There is an exception for ephemeral apps, because they
+ // can outlive their cache lifetimes.
+ void GarbageCollectIsolatedStorageIfNeeded();
+
+ // The ExtensionService which owns this GarbageCollector.
+ ExtensionService* extension_service_;
+
+ // The BrowserContext associated with the GarbageCollector, for convenience.
+ // (This is equivalent to extension_service_->GetBrowserContext().)
+ content::BrowserContext* context_;
+
+ // The root extensions installation directory.
+ base::FilePath install_directory_;
+
+#if defined(OS_CHROMEOS)
+ // TODO(rkc): HACK alert - this is only in place to allow the
+ // kiosk_mode_screensaver to prevent its extension from getting garbage
+ // collected. Remove this once KioskModeScreensaver is removed.
+ // See crbug.com/280363
+ bool disable_garbage_collection_;
+#endif
+
+ // Generate weak pointers for safely posting to the file thread for garbage
+ // collection.
+ base::WeakPtrFactory<ExtensionGarbageCollector> weak_factory_;
+
+ DISALLOW_COPY_AND_ASSIGN(ExtensionGarbageCollector);
+};
+
+} // namespace extensions
+
+#endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_GARBAGE_COLLECTOR_H_

Powered by Google App Engine
This is Rietveld 408576698