Index: chrome/browser/extensions/api/webstore_private/webstore_private_api.cc |
diff --git a/chrome/browser/extensions/api/webstore_private/webstore_private_api.cc b/chrome/browser/extensions/api/webstore_private/webstore_private_api.cc |
index 9959e34c19341ec63d0c451767af5b9a71cf9d56..50ebf38cd667f37ed25cdfe02f106bfd1bdc833f 100644 |
--- a/chrome/browser/extensions/api/webstore_private/webstore_private_api.cc |
+++ b/chrome/browser/extensions/api/webstore_private/webstore_private_api.cc |
@@ -325,7 +325,11 @@ void BeginInstallWithManifestFunction::OnWebstoreParseSuccess( |
install_prompt_.reset( |
chrome::CreateExtensionInstallPromptWithBrowser(GetCurrentBrowser())); |
- install_prompt_->ConfirmWebstoreInstall(this, dummy_extension_, &icon_); |
+ install_prompt_->ConfirmWebstoreInstall( |
+ this, |
+ dummy_extension_, |
+ &icon_, |
+ ExtensionInstallDialog::CreateDefaultImpl()); |
Aaron Boodman
2012/10/11 01:57:57
Can you make it so you can just pass NULL here and
sail
2012/10/11 02:32:16
Done.
|
// Control flow finishes up in InstallUIProceed or InstallUIAbort. |
} |