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

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

Issue 628773002: replace OVERRIDE and FINAL with override and final in chrome/browser/ui/[t-v]* (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_view.h
diff --git a/chrome/browser/ui/views/infobars/infobar_view.h b/chrome/browser/ui/views/infobars/infobar_view.h
index 9838c556abbb9a9247f1bd96628266030ee302da..042dd2603c68bc44b476663447005bdcafea8c60 100644
--- a/chrome/browser/ui/views/infobars/infobar_view.h
+++ b/chrome/browser/ui/views/infobars/infobar_view.h
@@ -67,15 +67,15 @@ class InfoBarView : public infobars::InfoBar,
static void AssignWidths(Labels* labels, int available_width);
// views::View:
- virtual void Layout() OVERRIDE;
+ virtual void Layout() override;
virtual void ViewHierarchyChanged(
- const ViewHierarchyChangedDetails& details) OVERRIDE;
+ const ViewHierarchyChangedDetails& details) override;
// views::ButtonListener:
// NOTE: This must not be called if we're unowned. (Subclasses should ignore
// calls to ButtonPressed() in this case.)
virtual void ButtonPressed(views::Button* sender,
- const ui::Event& event) OVERRIDE;
+ const ui::Event& event) override;
// Returns the minimum width the content (that is, everything between the icon
// and the close button) can be shrunk to. This is used to prevent the close
@@ -108,19 +108,19 @@ class InfoBarView : public infobars::InfoBar,
static void AssignWidthsSorted(Labels* labels, int available_width);
// InfoBar:
- virtual void PlatformSpecificShow(bool animate) OVERRIDE;
- virtual void PlatformSpecificHide(bool animate) OVERRIDE;
- virtual void PlatformSpecificOnHeightsRecalculated() OVERRIDE;
+ virtual void PlatformSpecificShow(bool animate) override;
+ virtual void PlatformSpecificHide(bool animate) override;
+ virtual void PlatformSpecificOnHeightsRecalculated() override;
// views::View:
- virtual void GetAccessibleState(ui::AXViewState* state) OVERRIDE;
- virtual gfx::Size GetPreferredSize() const OVERRIDE;
+ virtual void GetAccessibleState(ui::AXViewState* state) override;
+ virtual gfx::Size GetPreferredSize() const override;
virtual void PaintChildren(gfx::Canvas* canvas,
- const views::CullSet& cull_set) OVERRIDE;
+ const views::CullSet& cull_set) override;
// views::ExternalFocusTracker:
virtual void OnWillChangeFocus(View* focused_before,
- View* focused_now) OVERRIDE;
+ View* focused_now) override;
// The optional icon at the left edge of the InfoBar.
views::ImageView* icon_;
« no previous file with comments | « chrome/browser/ui/views/infobars/infobar_container_view.h ('k') | chrome/browser/ui/views/javascript_app_modal_dialog_views.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698