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

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

Issue 1521039: Allow extension overinstall (Closed)
Patch Set: blargh Created 10 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
« no previous file with comments | « chrome/browser/extensions/crx_installer.h ('k') | chrome/browser/extensions/extension_browsertest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/crx_installer.cc
diff --git a/chrome/browser/extensions/crx_installer.cc b/chrome/browser/extensions/crx_installer.cc
index f49db955581e341610b1086630055313882bfc72..26fab92cd3c6d082842bca8f63e8510d7bbc2b13 100644
--- a/chrome/browser/extensions/crx_installer.cc
+++ b/chrome/browser/extensions/crx_installer.cc
@@ -24,6 +24,7 @@
#include "chrome/common/notification_type.h"
#include "grit/browser_resources.h"
#include "grit/chromium_strings.h"
+#include "grit/generated_resources.h"
#include "third_party/skia/include/core/SkBitmap.h"
namespace {
@@ -213,27 +214,24 @@ void CrxInstaller::InstallUIAbort() {
void CrxInstaller::CompleteInstall() {
DCHECK(ChromeThread::CurrentlyOn(ChromeThread::FILE));
- FilePath version_dir;
- Extension::InstallType install_type =
- extension_file_util::CompareToInstalledVersion(
- install_directory_, extension_->id(), current_version_,
- extension_->VersionString(), &version_dir);
-
- if (install_type == Extension::DOWNGRADE) {
- ReportFailureFromFileThread("Attempted to downgrade extension.");
- return;
- }
-
- if (install_type == Extension::REINSTALL) {
- // We use this as a signal to switch themes.
- ReportOverinstallFromFileThread();
- return;
+ if (!current_version_.empty()) {
+ scoped_ptr<Version> current_version(
+ Version::GetVersionFromString(current_version_));
+ if (current_version->CompareTo(*(extension_->version())) > 0) {
+ ReportFailureFromFileThread("Attempted to downgrade extension.");
+ return;
+ }
}
- std::string error_msg;
- if (!extension_file_util::InstallExtension(unpacked_extension_root_,
- version_dir, &error_msg)) {
- ReportFailureFromFileThread(error_msg);
+ FilePath version_dir = extension_file_util::InstallExtension(
+ unpacked_extension_root_,
+ extension_->id(),
+ extension_->VersionString(),
+ install_directory_);
+ if (version_dir.empty()) {
+ ReportFailureFromFileThread(
+ l10n_util::GetStringUTF8(
+ IDS_EXTENSION_MOVE_DIRECTORY_TO_PROFILE_FAILED));
return;
}
@@ -296,27 +294,6 @@ void CrxInstaller::ReportFailureFromUIThread(const std::string& error) {
client_->OnInstallFailure(error);
}
-void CrxInstaller::ReportOverinstallFromFileThread() {
- DCHECK(ChromeThread::CurrentlyOn(ChromeThread::FILE));
- ChromeThread::PostTask(
- ChromeThread::UI, FROM_HERE,
- NewRunnableMethod(this, &CrxInstaller::ReportOverinstallFromUIThread));
-}
-
-void CrxInstaller::ReportOverinstallFromUIThread() {
- DCHECK(ChromeThread::CurrentlyOn(ChromeThread::UI));
-
- NotificationService* service = NotificationService::current();
- service->Notify(NotificationType::EXTENSION_OVERINSTALL_ERROR,
- Source<CrxInstaller>(this),
- Details<const FilePath>(&extension_->path()));
-
- if (client_)
- client_->OnOverinstallAttempted(extension_.get());
-
- frontend_->OnExtensionOverinstallAttempted(extension_->id());
-}
-
void CrxInstaller::ReportSuccessFromFileThread() {
DCHECK(ChromeThread::CurrentlyOn(ChromeThread::FILE));
ChromeThread::PostTask(
« no previous file with comments | « chrome/browser/extensions/crx_installer.h ('k') | chrome/browser/extensions/extension_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698