Index: chrome/browser/extensions/crx_installer.cc |
diff --git a/chrome/browser/extensions/crx_installer.cc b/chrome/browser/extensions/crx_installer.cc |
index 09fd7ead52614e9afd33162827b5407a2254d766..8ed780af228ea5373233f0233366fdfdd2ab77ad 100644 |
--- a/chrome/browser/extensions/crx_installer.cc |
+++ b/chrome/browser/extensions/crx_installer.cc |
@@ -282,7 +282,7 @@ void CrxInstaller::OnUnpackSuccess(const FilePath& temp_dir, |
return; |
} |
- if (client_ || extension_->GetFullLaunchURL().is_valid()) { |
+ if (client_) { |
Extension::DecodeIcon(extension_.get(), Extension::EXTENSION_ICON_LARGE, |
&install_icon_); |
} |
@@ -430,7 +430,7 @@ void CrxInstaller::ReportSuccessFromUIThread() { |
// If there is a client, tell the client about installation. |
if (client_) |
- client_->OnInstallSuccess(extension_.get()); |
+ client_->OnInstallSuccess(extension_.get(), install_icon_.get()); |
// Tell the frontend about the installation and hand off ownership of |
// extension_ to it. |