Index: chrome/browser/extensions/api/webstore_widget_private/app_installer.h |
diff --git a/chrome/browser/extensions/api/webstore_widget_private/app_installer.h b/chrome/browser/extensions/api/webstore_widget_private/app_installer.h |
index 8df3bf8ea6561443eeaf12533f9e8837b3e9f4a1..b142bf73ff67fadadd83fd19b5f610fd86fb8afb 100644 |
--- a/chrome/browser/extensions/api/webstore_widget_private/app_installer.h |
+++ b/chrome/browser/extensions/api/webstore_widget_private/app_installer.h |
@@ -41,7 +41,7 @@ class AppInstaller : public extensions::WebstoreStandaloneInstaller { |
bool ShouldShowPostInstallUI() const override; |
bool ShouldShowAppInstalledBubble() const override; |
content::WebContents* GetWebContents() const override; |
- scoped_ptr<ExtensionInstallPrompt::Prompt> CreateInstallPrompt() |
+ std::unique_ptr<ExtensionInstallPrompt::Prompt> CreateInstallPrompt() |
const override; |
bool CheckInlineInstallPermitted(const base::DictionaryValue& webstore_data, |
std::string* error) const override; |
@@ -54,7 +54,7 @@ class AppInstaller : public extensions::WebstoreStandaloneInstaller { |
bool silent_installation_; |
Callback callback_; |
content::WebContents* web_contents_; |
- scoped_ptr<WebContentsObserver> web_contents_observer_; |
+ std::unique_ptr<WebContentsObserver> web_contents_observer_; |
DISALLOW_IMPLICIT_CONSTRUCTORS(AppInstaller); |
}; |