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

Unified Diff: chrome/browser/ui/views/frame/immersive_mode_controller_ash.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_ash.h
diff --git a/chrome/browser/ui/views/frame/immersive_mode_controller_ash.h b/chrome/browser/ui/views/frame/immersive_mode_controller_ash.h
index 1e3d6569b9d1f6cd124f0649fcc90ef77390d815..005bb715cbdc83f1ba87bd84ccdff7d54838a455 100644
--- a/chrome/browser/ui/views/frame/immersive_mode_controller_ash.h
+++ b/chrome/browser/ui/views/frame/immersive_mode_controller_ash.h
@@ -28,19 +28,19 @@ class ImmersiveModeControllerAsh
virtual ~ImmersiveModeControllerAsh();
// 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:
// Enables or disables observers for window restore and entering / exiting
@@ -55,21 +55,21 @@ class ImmersiveModeControllerAsh
bool UpdateTabIndicators();
// ImmersiveFullscreenController::Delegate overrides:
- virtual void OnImmersiveRevealStarted() OVERRIDE;
- virtual void OnImmersiveRevealEnded() OVERRIDE;
- virtual void OnImmersiveFullscreenExited() OVERRIDE;
- virtual void SetVisibleFraction(double visible_fraction) OVERRIDE;
- virtual std::vector<gfx::Rect> GetVisibleBoundsInScreen() const OVERRIDE;
+ virtual void OnImmersiveRevealStarted() override;
+ virtual void OnImmersiveRevealEnded() override;
+ virtual void OnImmersiveFullscreenExited() override;
+ virtual void SetVisibleFraction(double visible_fraction) override;
+ virtual std::vector<gfx::Rect> GetVisibleBoundsInScreen() const override;
// ash::wm::WindowStateObserver override:
virtual void OnPostWindowStateTypeChange(
ash::wm::WindowState* window_state,
- ash::wm::WindowStateType old_type) OVERRIDE;
+ ash::wm::WindowStateType old_type) override;
// content::NotificationObserver override:
virtual void Observe(int type,
const content::NotificationSource& source,
- const content::NotificationDetails& details) OVERRIDE;
+ const content::NotificationDetails& details) override;
scoped_ptr<ash::ImmersiveFullscreenController> controller_;

Powered by Google App Engine
This is Rietveld 408576698