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

Unified Diff: ui/views/widget/tooltip_manager_aura.h

Issue 686493002: 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 | « ui/views/widget/root_view_unittest.cc ('k') | ui/views/widget/widget.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/widget/tooltip_manager_aura.h
diff --git a/ui/views/widget/tooltip_manager_aura.h b/ui/views/widget/tooltip_manager_aura.h
index 73266a1d29d176d00be5d1fc7bfaeb2e30b7a108..2c2b45818ec46239ca9d40e96171828876e31b36 100644
--- a/ui/views/widget/tooltip_manager_aura.h
+++ b/ui/views/widget/tooltip_manager_aura.h
@@ -26,7 +26,7 @@ class Widget;
class TooltipManagerAura : public TooltipManager {
public:
explicit TooltipManagerAura(Widget* widget);
- virtual ~TooltipManagerAura();
+ ~TooltipManagerAura() override;
// If |source| has capture this finds the Widget under the mouse and invokes
// UpdateTooltip() on it's TooltipManager. This is necessary as when capture
@@ -38,9 +38,9 @@ class TooltipManagerAura : public TooltipManager {
static const gfx::FontList& GetDefaultFontList();
// TooltipManager:
- virtual const gfx::FontList& GetFontList() const override;
- virtual void UpdateTooltip() override;
- virtual void TooltipTextChanged(View* view) override;
+ const gfx::FontList& GetFontList() const override;
+ void UpdateTooltip() override;
+ void TooltipTextChanged(View* view) override;
private:
View* GetViewUnderPoint(const gfx::Point& point);
« no previous file with comments | « ui/views/widget/root_view_unittest.cc ('k') | ui/views/widget/widget.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698