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

Unified Diff: chrome/browser/ui/views/autofill/tooltip_icon.cc

Issue 686543002: 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/autofill/tooltip_icon.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/views/autofill/tooltip_icon.cc
diff --git a/chrome/browser/ui/views/autofill/tooltip_icon.cc b/chrome/browser/ui/views/autofill/tooltip_icon.cc
index b43335573d392cb6c51d3f7ac93cd1be2d691b80..866621160941e931ceb08d78eff0cfc16dea30f2 100644
--- a/chrome/browser/ui/views/autofill/tooltip_icon.cc
+++ b/chrome/browser/ui/views/autofill/tooltip_icon.cc
@@ -34,11 +34,11 @@ class TooltipBubble : public InfoBubble {
public:
TooltipBubble(views::View* anchor, const base::string16& message)
: InfoBubble(anchor, message) {}
- virtual ~TooltipBubble() {}
+ ~TooltipBubble() override {}
protected:
// InfoBubble:
- virtual gfx::Rect GetAnchorRect() const override {
+ gfx::Rect GetAnchorRect() const override {
gfx::Rect bounds = views::BubbleDelegateView::GetAnchorRect();
bounds.Inset(GetPreferredInsets(anchor()));
return bounds;
« no previous file with comments | « chrome/browser/ui/views/autofill/tooltip_icon.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698