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

Unified Diff: chrome/browser/ui/omnibox/alternate_nav_infobar_delegate.h

Issue 671653002: Standardize usage of virtual/override/final in chrome/browser/ui/ (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/ui/omnibox/alternate_nav_infobar_delegate.h
diff --git a/chrome/browser/ui/omnibox/alternate_nav_infobar_delegate.h b/chrome/browser/ui/omnibox/alternate_nav_infobar_delegate.h
index cef746886bde421e4396d6e494db462e965a2249..9bc74c6726586488fa071a9272e5ae775982772f 100644
--- a/chrome/browser/ui/omnibox/alternate_nav_infobar_delegate.h
+++ b/chrome/browser/ui/omnibox/alternate_nav_infobar_delegate.h
@@ -17,7 +17,7 @@ class WebContents;
class AlternateNavInfoBarDelegate : public infobars::InfoBarDelegate {
public:
- virtual ~AlternateNavInfoBarDelegate();
+ ~AlternateNavInfoBarDelegate() override;
// Creates an alternate nav infobar and delegate and adds the infobar to the
// infobar service for |web_contents|.
@@ -41,8 +41,8 @@ class AlternateNavInfoBarDelegate : public infobars::InfoBarDelegate {
scoped_ptr<AlternateNavInfoBarDelegate> delegate);
// InfoBarDelegate:
- virtual int GetIconID() const override;
- virtual Type GetInfoBarType() const override;
+ int GetIconID() const override;
+ Type GetInfoBarType() const override;
Profile* profile_;
const base::string16 text_;

Powered by Google App Engine
This is Rietveld 408576698