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

Unified Diff: chrome/browser/infobars/infobar_service.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/infobars/infobar_service.h
diff --git a/chrome/browser/infobars/infobar_service.h b/chrome/browser/infobars/infobar_service.h
index 9468eb45d1f798b15b72184fc2091d760eaa5188..5a40eb298c29dbe3c164f1c1a3460539ea9dcf50 100644
--- a/chrome/browser/infobars/infobar_service.h
+++ b/chrome/browser/infobars/infobar_service.h
@@ -52,22 +52,22 @@ class InfoBarService : public infobars::InfoBarManager,
virtual ~InfoBarService();
// InfoBarManager:
- virtual int GetActiveEntryID() OVERRIDE;
+ virtual int GetActiveEntryID() override;
// TODO(droger): Remove these functions once infobar notifications are
// removed. See http://crbug.com/354380
- virtual void NotifyInfoBarAdded(infobars::InfoBar* infobar) OVERRIDE;
+ virtual void NotifyInfoBarAdded(infobars::InfoBar* infobar) override;
virtual void NotifyInfoBarRemoved(infobars::InfoBar* infobar,
- bool animate) OVERRIDE;
+ bool animate) override;
// content::WebContentsObserver:
- virtual void RenderProcessGone(base::TerminationStatus status) OVERRIDE;
+ virtual void RenderProcessGone(base::TerminationStatus status) override;
virtual void DidStartNavigationToPendingEntry(
const GURL& url,
- content::NavigationController::ReloadType reload_type) OVERRIDE;
+ content::NavigationController::ReloadType reload_type) override;
virtual void NavigationEntryCommitted(
- const content::LoadCommittedDetails& load_details) OVERRIDE;
- virtual void WebContentsDestroyed() OVERRIDE;
- virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
+ const content::LoadCommittedDetails& load_details) override;
+ virtual void WebContentsDestroyed() override;
+ virtual bool OnMessageReceived(const IPC::Message& message) override;
// Message handlers.
void OnDidBlockDisplayingInsecureContent();
« no previous file with comments | « chrome/browser/infobars/infobar_extension_api.h ('k') | chrome/browser/infobars/insecure_content_infobar_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698