| Index: chrome/browser/extensions/webstore_inline_installer.h
|
| diff --git a/chrome/browser/extensions/webstore_inline_installer.h b/chrome/browser/extensions/webstore_inline_installer.h
|
| index d1cf65de8d9cc1888c45f662128d865c194c3057..0dfdca558d6a4a1ddb9f691056d453678bad21f6 100644
|
| --- a/chrome/browser/extensions/webstore_inline_installer.h
|
| +++ b/chrome/browser/extensions/webstore_inline_installer.h
|
| @@ -39,26 +39,24 @@ class WebstoreInlineInstaller
|
| protected:
|
| friend class base::RefCountedThreadSafe<WebstoreInlineInstaller>;
|
|
|
| - virtual ~WebstoreInlineInstaller();
|
| + ~WebstoreInlineInstaller() override;
|
|
|
| // Implementations WebstoreStandaloneInstaller Template Method's hooks.
|
| - virtual bool CheckRequestorAlive() const override;
|
| - virtual const GURL& GetRequestorURL() const override;
|
| - virtual bool ShouldShowPostInstallUI() const override;
|
| - virtual bool ShouldShowAppInstalledBubble() const override;
|
| - virtual content::WebContents* GetWebContents() const override;
|
| - virtual scoped_refptr<ExtensionInstallPrompt::Prompt> CreateInstallPrompt()
|
| + bool CheckRequestorAlive() const override;
|
| + const GURL& GetRequestorURL() const override;
|
| + bool ShouldShowPostInstallUI() const override;
|
| + bool ShouldShowAppInstalledBubble() const override;
|
| + content::WebContents* GetWebContents() const override;
|
| + scoped_refptr<ExtensionInstallPrompt::Prompt> CreateInstallPrompt()
|
| const override;
|
| - virtual bool CheckInlineInstallPermitted(
|
| - const base::DictionaryValue& webstore_data,
|
| - std::string* error) const override;
|
| - virtual bool CheckRequestorPermitted(
|
| - const base::DictionaryValue& webstore_data,
|
| - std::string* error) const override;
|
| + bool CheckInlineInstallPermitted(const base::DictionaryValue& webstore_data,
|
| + std::string* error) const override;
|
| + bool CheckRequestorPermitted(const base::DictionaryValue& webstore_data,
|
| + std::string* error) const override;
|
|
|
| private:
|
| // content::WebContentsObserver interface implementation.
|
| - virtual void WebContentsDestroyed() override;
|
| + void WebContentsDestroyed() override;
|
|
|
| // Checks whether the install is initiated by a page in a verified site
|
| // (which is at least a domain, but can also have a port or a path).
|
|
|