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

Unified Diff: chrome/browser/ui/panels/base_panel_browser_test.cc

Issue 627043002: replace OVERRIDE and FINAL with override and final in chrome/browser/ui/[a-s]* (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/panels/base_panel_browser_test.cc
diff --git a/chrome/browser/ui/panels/base_panel_browser_test.cc b/chrome/browser/ui/panels/base_panel_browser_test.cc
index 1f53d2793cda49d8fd5463a62b1b18e946b06206..0411f6832585776ca389e415c3c2a64ab0e022c0 100644
--- a/chrome/browser/ui/panels/base_panel_browser_test.cc
+++ b/chrome/browser/ui/panels/base_panel_browser_test.cc
@@ -65,33 +65,33 @@ class MockDisplaySettingsProviderImpl :
virtual ~MockDisplaySettingsProviderImpl() { }
// Overridden from DisplaySettingsProvider:
- virtual gfx::Rect GetPrimaryDisplayArea() const OVERRIDE;
- virtual gfx::Rect GetPrimaryWorkArea() const OVERRIDE;
+ virtual gfx::Rect GetPrimaryDisplayArea() const override;
+ virtual gfx::Rect GetPrimaryWorkArea() const override;
virtual gfx::Rect GetDisplayAreaMatching(
- const gfx::Rect& bounds) const OVERRIDE;
+ const gfx::Rect& bounds) const override;
virtual gfx::Rect GetWorkAreaMatching(
- const gfx::Rect& bounds) const OVERRIDE;
+ const gfx::Rect& bounds) const override;
virtual bool IsAutoHidingDesktopBarEnabled(
- DesktopBarAlignment alignment) OVERRIDE;
+ DesktopBarAlignment alignment) override;
virtual int GetDesktopBarThickness(
- DesktopBarAlignment alignment) const OVERRIDE;
+ DesktopBarAlignment alignment) const override;
virtual DesktopBarVisibility GetDesktopBarVisibility(
- DesktopBarAlignment alignment) const OVERRIDE;
- virtual bool IsFullScreen() OVERRIDE;
+ DesktopBarAlignment alignment) const override;
+ virtual bool IsFullScreen() override;
// Overridden from MockDisplaySettingsProvider:
virtual void SetPrimaryDisplay(
- const gfx::Rect& display_area, const gfx::Rect& work_area) OVERRIDE;
+ const gfx::Rect& display_area, const gfx::Rect& work_area) override;
virtual void SetSecondaryDisplay(
- const gfx::Rect& display_area, const gfx::Rect& work_area) OVERRIDE;
+ const gfx::Rect& display_area, const gfx::Rect& work_area) override;
virtual void EnableAutoHidingDesktopBar(DesktopBarAlignment alignment,
bool enabled,
- int thickness) OVERRIDE;
+ int thickness) override;
virtual void SetDesktopBarVisibility(
- DesktopBarAlignment alignment, DesktopBarVisibility visibility) OVERRIDE;
+ DesktopBarAlignment alignment, DesktopBarVisibility visibility) override;
virtual void SetDesktopBarThickness(DesktopBarAlignment alignment,
- int thickness) OVERRIDE;
- virtual void EnableFullScreenMode(bool enabled) OVERRIDE;
+ int thickness) override;
+ virtual void EnableFullScreenMode(bool enabled) override;
private:
gfx::Rect primary_display_area_;
« no previous file with comments | « chrome/browser/ui/panels/base_panel_browser_test.h ('k') | chrome/browser/ui/panels/detached_panel_collection.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698