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

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

Issue 9817018: Cleaning Up Extensions When Local Content Removed (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Cleaning Up Extensions When Local Content Removed Created 8 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_service.cc
diff --git a/chrome/browser/extensions/extension_service.cc b/chrome/browser/extensions/extension_service.cc
index 6340724de9cf9be8daeaf6880ad00255d9f87797..6cd9ff9cc447395cbc1f2874f2d28c2dc98c7554 100644
--- a/chrome/browser/extensions/extension_service.cc
+++ b/chrome/browser/extensions/extension_service.cc
@@ -110,7 +110,6 @@
#include "chrome/browser/chromeos/extensions/input_method_event_router.h"
#include "chrome/browser/chromeos/extensions/media_player_event_router.h"
#include "chrome/browser/chromeos/input_method/input_method_manager.h"
-#include "chrome/browser/extensions/extension_input_ime_api.h"
#include "webkit/fileapi/file_system_context.h"
#include "webkit/fileapi/file_system_mount_point_provider.h"
#endif
@@ -1885,7 +1884,7 @@ void ExtensionService::UnloadExtension(
// Clean up runtime data.
extension_runtime_data_.erase(extension_id);
-if (disabled_extensions_.Contains(extension->id())) {
+ if (disabled_extensions_.Contains(extension->id())) {
UnloadedExtensionInfo details(extension, reason);
details.already_disabled = true;
disabled_extensions_.Remove(extension->id());
@@ -1934,8 +1933,27 @@ void ExtensionService::GarbageCollectExtensions() {
extension_prefs_->GetInstalledExtensionsInfo());
std::map<std::string, FilePath> extension_paths;
- for (size_t i = 0; i < info->size(); ++i)
- extension_paths[info->at(i)->extension_id] = info->at(i)->extension_path;
+ for (size_t i = 0; i < info->size(); ++i) {
+ // Uninstall the extension if the path does not exist. If the extension
+ // failed to load fully (e.g. the user deleted an external extension's
+ // manifest or the manifest points to the wrong path), we cannot use
+ // UninstallExtension, which relies on a valid Extension object.
+ if (!file_util::PathExists(info->at(i)->extension_path)) {
Aaron Boodman 2012/03/21 21:00:47 You cannot use file_util::PathExists here (or inde
Devlin 2012/03/21 21:48:38 Not entirely sure why file_util works...but it doe
+ LOG(WARNING) << "Could not access local content for extension with id " <<
+ info->at(i)->extension_id << "; uninstalling extension.";
+ LOG(WARNING) << "Path: " << info->at(i)->extension_path.value();
+ if (!GetInstalledExtension(info->at(i)->extension_id)) {
+ UnloadExtension(info->at(i)->extension_id,
+ extension_misc::UNLOAD_REASON_UNINSTALL);
+ extension_prefs_->OnExtensionUninstalled(
+ info->at(i)->extension_id, info->at(i)->extension_location, false);
+ } else {
+ UninstallExtension(info->at(i)->extension_id, false, NULL);
+ }
+ } else {
+ extension_paths[info->at(i)->extension_id] = info->at(i)->extension_path;
+ }
+ }
if (!BrowserThread::PostTask(
BrowserThread::FILE, FROM_HERE,
@@ -2123,7 +2141,7 @@ void ExtensionService::InitializePermissions(const Extension* extension) {
// Other than for unpacked extensions, CrxInstaller should have guaranteed
// that we aren't downgrading.
if (extension->location() != Extension::LOAD)
- CHECK(extension->version()->CompareTo(*(old->version())) >= 0);
+ CHECK_GE(extension->version()->CompareTo(*(old->version())), 0);
// Extensions get upgraded if the privileges are allowed to increase or
// the privileges haven't increased.

Powered by Google App Engine
This is Rietveld 408576698