Chromium Code Reviews| Index: chrome/browser/extensions/extension_storage_monitor.cc |
| diff --git a/chrome/browser/extensions/extension_storage_monitor.cc b/chrome/browser/extensions/extension_storage_monitor.cc |
| index b03ed58d4bf94f9cfafaff30d76b68b84f82cf8a..c8f8ec2ef1231e6af947a9582ceab8a6638cfccf 100644 |
| --- a/chrome/browser/extensions/extension_storage_monitor.cc |
| +++ b/chrome/browser/extensions/extension_storage_monitor.cc |
| @@ -14,6 +14,8 @@ |
| #include "chrome/browser/extensions/extension_storage_monitor_factory.h" |
| #include "chrome/browser/extensions/extension_util.h" |
| #include "chrome/browser/profiles/profile.h" |
| +#include "chrome/browser/ui/app_list/app_list_service.h" |
| +#include "chrome/browser/ui/host_desktop.h" |
|
tmdiep
2014/07/11 06:13:29
Looks like you don't need these includes anymore.
sashab
2014/07/13 22:57:25
Done.
|
| #include "chrome/common/extensions/manifest_handlers/app_launch_info.h" |
| #include "content/public/browser/browser_context.h" |
| #include "content/public/browser/browser_thread.h" |
| @@ -547,8 +549,8 @@ void ExtensionStorageMonitor::ShowUninstallPrompt( |
| return; |
| if (!uninstall_dialog_.get()) { |
| - uninstall_dialog_.reset(ExtensionUninstallDialog::Create( |
| - Profile::FromBrowserContext(context_), NULL, this)); |
| + uninstall_dialog_.reset(ExtensionUninstallDialog::CreateAsStandaloneDialog( |
| + Profile::FromBrowserContext(context_), this)); |
| } |
| uninstall_extension_id_ = extension->id(); |