Index: chrome/browser/ui/views/apps/app_info_dialog/app_info_footer_panel.cc |
diff --git a/chrome/browser/ui/views/apps/app_info_dialog/app_info_footer_panel.cc b/chrome/browser/ui/views/apps/app_info_dialog/app_info_footer_panel.cc |
index abc9bee7d88cfe4dd560b01012f114cf030984ab..c4113b07866c7c597de0e6b238d048f6d3f732ed 100644 |
--- a/chrome/browser/ui/views/apps/app_info_dialog/app_info_footer_panel.cc |
+++ b/chrome/browser/ui/views/apps/app_info_dialog/app_info_footer_panel.cc |
@@ -115,8 +115,10 @@ void AppInfoFooterPanel::ButtonPressed(views::Button* sender, |
void AppInfoFooterPanel::ExtensionUninstallAccepted() { |
ExtensionService* service = |
extensions::ExtensionSystem::Get(profile_)->extension_service(); |
- service->UninstallExtension( |
- app_->id(), extensions::UNINSTALL_REASON_USER_INITIATED, NULL); |
+ service->UninstallExtension(app_->id(), |
+ extensions::UNINSTALL_REASON_USER_INITIATED, |
+ base::Bind(&base::DoNothing), |
+ NULL); |
// Close the App Info dialog as well (which will free the dialog too). |
GetWidget()->Close(); |