| 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();
|
|
|