| Index: chrome/browser/extensions/webstore_standalone_installer.cc
|
| diff --git a/chrome/browser/extensions/webstore_standalone_installer.cc b/chrome/browser/extensions/webstore_standalone_installer.cc
|
| index 5bc7efd1992eccdef81d10927501cfac89be4a0a..7327d9a1ef62fa3d676e6068b5096ea4f682eb7a 100644
|
| --- a/chrome/browser/extensions/webstore_standalone_installer.cc
|
| +++ b/chrome/browser/extensions/webstore_standalone_installer.cc
|
| @@ -365,14 +365,15 @@ void WebstoreStandaloneInstaller::OnWebstoreParseSuccess(
|
| localized_name_,
|
| localized_description_,
|
| &error);
|
| - if (!dummy_extension_) {
|
| + if (!dummy_extension_.get()) {
|
| OnWebstoreParseFailure(id_, WebstoreInstallHelper::Delegate::MANIFEST_ERROR,
|
| kInvalidManifestError);
|
| return;
|
| }
|
|
|
| install_ui_.reset(new ExtensionInstallPrompt(web_contents()));
|
| - install_ui_->ConfirmStandaloneInstall(this, dummy_extension_, &icon_, prompt);
|
| + install_ui_->
|
| + ConfirmStandaloneInstall(this, dummy_extension_.get(), &icon_, prompt);
|
| // Control flow finishes up in InstallUIProceed or InstallUIAbort.
|
| }
|
|
|
|
|