| Index: chrome/browser/ui/webui/extensions/install_extension_handler.cc
|
| diff --git a/chrome/browser/ui/webui/extensions/install_extension_handler.cc b/chrome/browser/ui/webui/extensions/install_extension_handler.cc
|
| index 2d504f3a0172bd0c5bffa470be87bdee59c7e775..0291d7fe662939836beda03025f9d1b9ed615bf4 100644
|
| --- a/chrome/browser/ui/webui/extensions/install_extension_handler.cc
|
| +++ b/chrome/browser/ui/webui/extensions/install_extension_handler.cc
|
| @@ -105,7 +105,7 @@ void InstallExtensionHandler::HandleInstallMessage(
|
| ZipFileInstaller::Create(ExtensionSystem::Get(profile)->extension_service())
|
| ->LoadFromZipFile(file_to_install_);
|
| } else {
|
| - scoped_ptr<ExtensionInstallPrompt> prompt(
|
| + std::unique_ptr<ExtensionInstallPrompt> prompt(
|
| new ExtensionInstallPrompt(web_ui()->GetWebContents()));
|
| scoped_refptr<CrxInstaller> crx_installer(CrxInstaller::Create(
|
| ExtensionSystem::Get(profile)->extension_service(), std::move(prompt)));
|
|
|