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

Unified Diff: chrome/browser/extensions/extension_infobar_delegate.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
Index: chrome/browser/extensions/extension_infobar_delegate.h
diff --git a/chrome/browser/extensions/extension_infobar_delegate.h b/chrome/browser/extensions/extension_infobar_delegate.h
index ec0f98dfe5e5f14f5209df99e7dab9ece041bb75..ce4ed66f19d2dbdfe067f7a4ebb1b62729cc0f17 100644
--- a/chrome/browser/extensions/extension_infobar_delegate.h
+++ b/chrome/browser/extensions/extension_infobar_delegate.h
@@ -69,21 +69,21 @@ class ExtensionInfoBarDelegate : public infobars::InfoBarDelegate,
// InfoBarDelegate.
virtual bool EqualsDelegate(
- infobars::InfoBarDelegate* delegate) const OVERRIDE;
- virtual void InfoBarDismissed() OVERRIDE;
- virtual Type GetInfoBarType() const OVERRIDE;
- virtual ExtensionInfoBarDelegate* AsExtensionInfoBarDelegate() OVERRIDE;
+ infobars::InfoBarDelegate* delegate) const override;
+ virtual void InfoBarDismissed() override;
+ virtual Type GetInfoBarType() const override;
+ virtual ExtensionInfoBarDelegate* AsExtensionInfoBarDelegate() override;
// content::NotificationObserver.
virtual void Observe(int type,
const content::NotificationSource& source,
- const content::NotificationDetails& details) OVERRIDE;
+ const content::NotificationDetails& details) override;
// extensions::ExtensionRegistryObserver.
virtual void OnExtensionUnloaded(
content::BrowserContext* browser_context,
const extensions::Extension* extension,
- extensions::UnloadedExtensionInfo::Reason reason) OVERRIDE;
+ extensions::UnloadedExtensionInfo::Reason reason) override;
#if defined(TOOLKIT_VIEWS)
Browser* browser_; // We pass this to the ExtensionInfoBar.

Powered by Google App Engine
This is Rietveld 408576698