| 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_;
|
|
|