| Index: chrome/browser/extensions/extension_webstore_private_api.cc
|
| diff --git a/chrome/browser/extensions/extension_webstore_private_api.cc b/chrome/browser/extensions/extension_webstore_private_api.cc
|
| index 8aa813bef31fcc6131209e5e6e82536eb962c97c..b06de1b53244b15c9b6cf0abb3b9b3736ca2e7b6 100644
|
| --- a/chrome/browser/extensions/extension_webstore_private_api.cc
|
| +++ b/chrome/browser/extensions/extension_webstore_private_api.cc
|
| @@ -357,7 +357,7 @@ void BeginInstallWithManifestFunction::OnWebstoreParseSuccess(
|
| parsed_manifest_.reset(parsed_manifest);
|
|
|
| std::string error;
|
| - dummy_extension_ = ExtensionInstallUI::GetLocalizedExtensionForDisplay(
|
| + dummy_extension_ = ExtensionInstallPrompt::GetLocalizedExtensionForDisplay(
|
| parsed_manifest_.get(), id, localized_name_, "", &error);
|
|
|
| if (!dummy_extension_) {
|
| @@ -366,7 +366,7 @@ void BeginInstallWithManifestFunction::OnWebstoreParseSuccess(
|
| return;
|
| }
|
|
|
| - install_ui_.reset(new ExtensionInstallUI(profile()));
|
| + install_ui_.reset(new ExtensionInstallPrompt(profile()));
|
| install_ui_->ConfirmWebstoreInstall(this, dummy_extension_, &icon_);
|
| // Control flow finishes up in InstallUIProceed or InstallUIAbort.
|
| }
|
|
|