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

Unified Diff: chrome/browser/ui/views/frame/immersive_mode_controller_stub.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/frame/immersive_mode_controller_stub.h
diff --git a/chrome/browser/ui/views/frame/immersive_mode_controller_stub.h b/chrome/browser/ui/views/frame/immersive_mode_controller_stub.h
index 657d3a8a587705dbf509dfb5b9b60369b7388e55..83d757e8761e31a76cd3eaad77f98e2688c119a4 100644
--- a/chrome/browser/ui/views/frame/immersive_mode_controller_stub.h
+++ b/chrome/browser/ui/views/frame/immersive_mode_controller_stub.h
@@ -18,19 +18,19 @@ class ImmersiveModeControllerStub : public ImmersiveModeController {
virtual ~ImmersiveModeControllerStub();
// ImmersiveModeController overrides:
- virtual void Init(BrowserView* browser_view) OVERRIDE;
- virtual void SetEnabled(bool enabled) OVERRIDE;
- virtual bool IsEnabled() const OVERRIDE;
- virtual bool ShouldHideTabIndicators() const OVERRIDE;
- virtual bool ShouldHideTopViews() const OVERRIDE;
- virtual bool IsRevealed() const OVERRIDE;
+ virtual void Init(BrowserView* browser_view) override;
+ virtual void SetEnabled(bool enabled) override;
+ virtual bool IsEnabled() const override;
+ virtual bool ShouldHideTabIndicators() const override;
+ virtual bool ShouldHideTopViews() const override;
+ virtual bool IsRevealed() const override;
virtual int GetTopContainerVerticalOffset(
- const gfx::Size& top_container_size) const OVERRIDE;
+ const gfx::Size& top_container_size) const override;
virtual ImmersiveRevealedLock* GetRevealedLock(
- AnimateReveal animate_reveal) OVERRIDE WARN_UNUSED_RESULT;
+ AnimateReveal animate_reveal) override WARN_UNUSED_RESULT;
virtual void OnFindBarVisibleBoundsChanged(
- const gfx::Rect& new_visible_bounds_in_screen) OVERRIDE;
- virtual void SetupForTest() OVERRIDE;
+ const gfx::Rect& new_visible_bounds_in_screen) override;
+ virtual void SetupForTest() override;
private:
DISALLOW_COPY_AND_ASSIGN(ImmersiveModeControllerStub);

Powered by Google App Engine
This is Rietveld 408576698