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

Unified Diff: chrome/browser/ui/views/infobars/infobar_container_view.h

Issue 681893002: Standardize usage of virtual/override/final specifiers. (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/views/infobars/infobar_container_view.h
diff --git a/chrome/browser/ui/views/infobars/infobar_container_view.h b/chrome/browser/ui/views/infobars/infobar_container_view.h
index 9fca1261826fcf6d4047aff3dd99807112ff901d..0ffc46bb98f4f8e2445a3e21072bb6e635d73b22 100644
--- a/chrome/browser/ui/views/infobars/infobar_container_view.h
+++ b/chrome/browser/ui/views/infobars/infobar_container_view.h
@@ -15,20 +15,19 @@ class InfoBarContainerView : public views::AccessiblePaneView,
static const char kViewClassName[];
explicit InfoBarContainerView(Delegate* delegate);
- virtual ~InfoBarContainerView();
+ ~InfoBarContainerView() override;
private:
// AccessiblePaneView:
- virtual gfx::Size GetPreferredSize() const override;
- virtual const char* GetClassName() const override;
- virtual void Layout() override;
- virtual void GetAccessibleState(ui::AXViewState* state) override;
+ gfx::Size GetPreferredSize() const override;
+ const char* GetClassName() const override;
+ void Layout() override;
+ void GetAccessibleState(ui::AXViewState* state) override;
// InfobarContainer:
- virtual void PlatformSpecificAddInfoBar(infobars::InfoBar* infobar,
- size_t position) override;
- virtual void PlatformSpecificRemoveInfoBar(
- infobars::InfoBar* infobar) override;
+ void PlatformSpecificAddInfoBar(infobars::InfoBar* infobar,
+ size_t position) override;
+ void PlatformSpecificRemoveInfoBar(infobars::InfoBar* infobar) override;
DISALLOW_COPY_AND_ASSIGN(InfoBarContainerView);
};
« no previous file with comments | « chrome/browser/ui/views/infobars/infobar_background.h ('k') | chrome/browser/ui/views/infobars/infobar_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698