diff options
author | dcheng <dcheng@chromium.org> | 2014-10-21 05:36:36 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-10-21 12:36:52 +0000 |
commit | ae36a4a3f2efd040be2e563b0bff0592b0a5b5a1 (patch) | |
tree | c3ea80b24727cce16ccabffd4e6f2cc85937a1b2 /chrome/browser/extensions/webstore_reinstaller.h | |
parent | 6d18e40fc2904b5314fd3b2ff7724819cff6df13 (diff) | |
download | chromium_src-ae36a4a3f2efd040be2e563b0bff0592b0a5b5a1.zip chromium_src-ae36a4a3f2efd040be2e563b0bff0592b0a5b5a1.tar.gz chromium_src-ae36a4a3f2efd040be2e563b0bff0592b0a5b5a1.tar.bz2 |
Standardize usage of virtual/override/final in chrome/browser/extensions/
This patch was automatically generated by applying clang fixit hints
generated by the plugin to the source tree.
BUG=417463
TBR=mek@chromium.org
Review URL: https://codereview.chromium.org/666153002
Cr-Commit-Position: refs/heads/master@{#300474}
Diffstat (limited to 'chrome/browser/extensions/webstore_reinstaller.h')
-rw-r--r-- | chrome/browser/extensions/webstore_reinstaller.h | 28 |
1 files changed, 13 insertions, 15 deletions
diff --git a/chrome/browser/extensions/webstore_reinstaller.h b/chrome/browser/extensions/webstore_reinstaller.h index aaea570..6927662 100644 --- a/chrome/browser/extensions/webstore_reinstaller.h +++ b/chrome/browser/extensions/webstore_reinstaller.h @@ -26,26 +26,24 @@ class WebstoreReinstaller : public WebstoreStandaloneInstaller, void BeginReinstall(); private: - virtual ~WebstoreReinstaller(); + ~WebstoreReinstaller() override; // WebstoreStandaloneInstaller: - 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; - virtual void InstallUIProceed() 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; + void InstallUIProceed() override; // content::WebContentsObserver: - virtual void WebContentsDestroyed() override; + void WebContentsDestroyed() override; // Called once all data from the old extension installation is removed. void OnDeletionDone(); |