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

Unified Diff: chrome/browser/ui/views/fullscreen_exit_bubble_views.h

Issue 680133002: Standardize usage of virtual/override/final specifiers. (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
« no previous file with comments | « chrome/browser/ui/views/first_run_dialog.h ('k') | chrome/browser/ui/views/fullscreen_exit_bubble_views.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 c5c3f280ffb956d40e46108540ee2a0b8694012a..8af6d0e51e2375cc08adcde81c455b5e8866d505 100644
--- a/chrome/browser/ui/views/fullscreen_exit_bubble_views.h
+++ b/chrome/browser/ui/views/fullscreen_exit_bubble_views.h
@@ -33,7 +33,7 @@ class FullscreenExitBubbleViews : public FullscreenExitBubble,
FullscreenExitBubbleViews(BrowserView* browser,
const GURL& url,
FullscreenExitBubbleType bubble_type);
- virtual ~FullscreenExitBubbleViews();
+ ~FullscreenExitBubbleViews() override;
void UpdateContent(const GURL& url, FullscreenExitBubbleType bubble_type);
@@ -63,25 +63,24 @@ 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;
+ void AnimationProgressed(const gfx::Animation* animation) override;
+ void AnimationEnded(const gfx::Animation* animation) override;
+ gfx::Rect GetPopupRect(bool ignore_animation_state) const override;
+ gfx::Point GetCursorScreenPoint() override;
+ bool WindowContainsPoint(gfx::Point pos) override;
+ bool IsWindowActive() override;
+ void Hide() override;
+ void Show() override;
+ bool IsAnimating() override;
+ bool CanMouseTriggerSlideIn() const override;
// content::NotificationObserver override:
- virtual void Observe(int type,
- const content::NotificationSource& source,
- const content::NotificationDetails& details) override;
+ void Observe(int type,
+ const content::NotificationSource& source,
+ const content::NotificationDetails& details) override;
// views::WidgetObserver override:
- virtual void OnWidgetVisibilityChanged(views::Widget* widget,
- bool visible) override;
+ void OnWidgetVisibilityChanged(views::Widget* widget, bool visible) override;
BrowserView* browser_view_;
« no previous file with comments | « chrome/browser/ui/views/first_run_dialog.h ('k') | chrome/browser/ui/views/fullscreen_exit_bubble_views.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698