| Index: chrome/browser/extensions/api/webstore_widget_private/app_installer.cc
|
| diff --git a/chrome/browser/extensions/api/webstore_widget_private/app_installer.cc b/chrome/browser/extensions/api/webstore_widget_private/app_installer.cc
|
| index ea5e34ba261ba290268a11e0f67056bcedef05f3..3c1af8493f77af3bb0fe4235ea901de4c50afe41 100644
|
| --- a/chrome/browser/extensions/api/webstore_widget_private/app_installer.cc
|
| +++ b/chrome/browser/extensions/api/webstore_widget_private/app_installer.cc
|
| @@ -56,12 +56,12 @@ const GURL& AppInstaller::GetRequestorURL() const {
|
| return GURL::EmptyGURL();
|
| }
|
|
|
| -scoped_ptr<ExtensionInstallPrompt::Prompt> AppInstaller::CreateInstallPrompt()
|
| - const {
|
| +std::unique_ptr<ExtensionInstallPrompt::Prompt>
|
| +AppInstaller::CreateInstallPrompt() const {
|
| if (silent_installation_)
|
| return nullptr;
|
|
|
| - scoped_ptr<ExtensionInstallPrompt::Prompt> prompt(
|
| + std::unique_ptr<ExtensionInstallPrompt::Prompt> prompt(
|
| new ExtensionInstallPrompt::Prompt(
|
| ExtensionInstallPrompt::INLINE_INSTALL_PROMPT));
|
|
|
|
|