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

Unified Diff: chrome/browser/apps/ephemeral_app_launcher.h

Issue 625113002: replace OVERRIDE and FINAL with override and final in chrome/browser/[a-i]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix newly added OVERRIDEs 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/apps/ephemeral_app_launcher.h
diff --git a/chrome/browser/apps/ephemeral_app_launcher.h b/chrome/browser/apps/ephemeral_app_launcher.h
index 06bd69c9c82eeaae8db069e605c695ba5723bb18..01fb2e576d75d53ffb4e47baada1b4d136b8cc96 100644
--- a/chrome/browser/apps/ephemeral_app_launcher.h
+++ b/chrome/browser/apps/ephemeral_app_launcher.h
@@ -73,9 +73,9 @@ class EphemeralAppLauncher : public extensions::WebstoreStandaloneInstaller,
CreateInstallChecker();
// WebstoreStandaloneInstaller implementation overridden in tests.
- virtual scoped_ptr<ExtensionInstallPrompt> CreateInstallUI() OVERRIDE;
+ virtual scoped_ptr<ExtensionInstallPrompt> CreateInstallUI() override;
virtual scoped_ptr<extensions::WebstoreInstaller::Approval> CreateApproval()
- const OVERRIDE;
+ const override;
private:
friend class base::RefCountedThreadSafe<EphemeralAppLauncher>;
@@ -117,30 +117,30 @@ class EphemeralAppLauncher : public extensions::WebstoreStandaloneInstaller,
// WebstoreStandaloneInstaller implementation.
virtual void InitInstallData(
- extensions::ActiveInstallData* install_data) 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;
+ extensions::ActiveInstallData* install_data) 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;
+ const 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;
- virtual void OnManifestParsed() OVERRIDE;
+ std::string* error) const override;
+ virtual void OnManifestParsed() override;
virtual void CompleteInstall(extensions::webstore_install::Result result,
- const std::string& error) OVERRIDE;
+ const std::string& error) override;
// content::WebContentsObserver implementation.
- virtual void WebContentsDestroyed() OVERRIDE;
+ virtual void WebContentsDestroyed() override;
// ExtensionEnableFlowDelegate implementation.
- virtual void ExtensionEnableFlowFinished() OVERRIDE;
- virtual void ExtensionEnableFlowAborted(bool user_initiated) OVERRIDE;
+ virtual void ExtensionEnableFlowFinished() override;
+ virtual void ExtensionEnableFlowAborted(bool user_initiated) override;
LaunchCallback launch_callback_;
« no previous file with comments | « chrome/browser/apps/ephemeral_app_browsertest.cc ('k') | chrome/browser/apps/ephemeral_app_launcher_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698