Index: chrome/browser/extensions/extension_install_ui.cc |
=================================================================== |
--- chrome/browser/extensions/extension_install_ui.cc (revision 48045) |
+++ chrome/browser/extensions/extension_install_ui.cc (working copy) |
@@ -273,13 +273,8 @@ |
switch (prompt_type_) { |
case INSTALL_PROMPT: { |
- if (extension_->GetFullLaunchURL().is_valid()) { |
- // Special case extension apps to not show the install dialog. |
- // TODO(finnur): http://crbug.com/42443: Don't do this for all apps. |
- delegate_->InstallUIProceed(false); // |create_app_shortcut|. |
- return; |
- } |
- |
+ // TODO(jcivelli): http://crbug.com/44771 We should not show an install |
+ // dialog when installing an app from the gallery. |
NotificationService* service = NotificationService::current(); |
service->Notify(NotificationType::EXTENSION_WILL_SHOW_CONFIRM_DIALOG, |
Source<ExtensionInstallUI>(this), |