Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1269)

Unified Diff: chrome/browser/extensions/webstore_reinstaller.h

Issue 666153002: Standardize usage of virtual/override/final in chrome/browser/extensions/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/webstore_reinstaller.h
diff --git a/chrome/browser/extensions/webstore_reinstaller.h b/chrome/browser/extensions/webstore_reinstaller.h
index aaea5707e247d03521db782610b828c8ec4e9907..69276629f7813a895dad8402092e60e0080c3de6 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();
« no previous file with comments | « chrome/browser/extensions/webstore_installer_test.h ('k') | chrome/browser/extensions/webstore_standalone_installer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698