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

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

Issue 624153002: replace OVERRIDE and FINAL with override and 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
« no previous file with comments | « chrome/browser/extensions/webstore_install_helper.h ('k') | chrome/browser/extensions/webstore_installer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/webstore_install_with_prompt.h
diff --git a/chrome/browser/extensions/webstore_install_with_prompt.h b/chrome/browser/extensions/webstore_install_with_prompt.h
index 9c4ac26fbc90ecec799773641d3ad0026dc26961..91ec9be0f732035f1910496a9c19a9d859b5ec63 100644
--- a/chrome/browser/extensions/webstore_install_with_prompt.h
+++ b/chrome/browser/extensions/webstore_install_with_prompt.h
@@ -51,24 +51,24 @@ class WebstoreInstallWithPrompt : public WebstoreStandaloneInstaller,
void set_show_post_install_ui(bool show) { show_post_install_ui_ = show; }
// extensions::WebstoreStandaloneInstaller overrides:
- 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 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()
- const OVERRIDE;
- virtual scoped_ptr<ExtensionInstallPrompt> CreateInstallUI() OVERRIDE;
+ const override;
+ virtual scoped_ptr<ExtensionInstallPrompt> CreateInstallUI() override;
virtual bool CheckInlineInstallPermitted(
const base::DictionaryValue& webstore_data,
- std::string* error) const OVERRIDE;
+ std::string* error) const override;
virtual bool CheckRequestorPermitted(
const base::DictionaryValue& webstore_data,
- std::string* error) const OVERRIDE;
+ std::string* error) const override;
// content::PageNavigator overrides:
virtual content::WebContents* OpenURL(
- const content::OpenURLParams& params) OVERRIDE;
+ const content::OpenURLParams& params) override;
private:
bool show_post_install_ui_;
« no previous file with comments | « chrome/browser/extensions/webstore_install_helper.h ('k') | chrome/browser/extensions/webstore_installer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698