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

Unified Diff: chrome/browser/ui/views/fullscreen_exit_bubble_views.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/fullscreen_exit_bubble_views.h
diff --git a/chrome/browser/ui/views/fullscreen_exit_bubble_views.h b/chrome/browser/ui/views/fullscreen_exit_bubble_views.h
index 116a8d914f86ed043ba75fb6c4d7b06ff0864742..c5c3f280ffb956d40e46108540ee2a0b8694012a 100644
--- a/chrome/browser/ui/views/fullscreen_exit_bubble_views.h
+++ b/chrome/browser/ui/views/fullscreen_exit_bubble_views.h
@@ -63,25 +63,25 @@ class FullscreenExitBubbleViews : public FullscreenExitBubble,
views::View* GetBrowserRootView() const;
// FullScreenExitBubble overrides:
- virtual void AnimationProgressed(const gfx::Animation* animation) OVERRIDE;
- virtual void AnimationEnded(const gfx::Animation* animation) OVERRIDE;
- virtual gfx::Rect GetPopupRect(bool ignore_animation_state) const OVERRIDE;
- virtual gfx::Point GetCursorScreenPoint() OVERRIDE;
- virtual bool WindowContainsPoint(gfx::Point pos) OVERRIDE;
- virtual bool IsWindowActive() OVERRIDE;
- virtual void Hide() OVERRIDE;
- virtual void Show() OVERRIDE;
- virtual bool IsAnimating() OVERRIDE;
- virtual bool CanMouseTriggerSlideIn() const OVERRIDE;
+ virtual void AnimationProgressed(const gfx::Animation* animation) override;
+ virtual void AnimationEnded(const gfx::Animation* animation) override;
+ virtual gfx::Rect GetPopupRect(bool ignore_animation_state) const override;
+ virtual gfx::Point GetCursorScreenPoint() override;
+ virtual bool WindowContainsPoint(gfx::Point pos) override;
+ virtual bool IsWindowActive() override;
+ virtual void Hide() override;
+ virtual void Show() override;
+ virtual bool IsAnimating() override;
+ virtual bool CanMouseTriggerSlideIn() const override;
// content::NotificationObserver override:
virtual void Observe(int type,
const content::NotificationSource& source,
- const content::NotificationDetails& details) OVERRIDE;
+ const content::NotificationDetails& details) override;
// views::WidgetObserver override:
virtual void OnWidgetVisibilityChanged(views::Widget* widget,
- bool visible) OVERRIDE;
+ bool visible) override;
BrowserView* browser_view_;

Powered by Google App Engine
This is Rietveld 408576698