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

Unified Diff: chrome/browser/ui/views/passwords/manage_passwords_bubble_view.h

Issue 681043002: 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
Index: chrome/browser/ui/views/passwords/manage_passwords_bubble_view.h
diff --git a/chrome/browser/ui/views/passwords/manage_passwords_bubble_view.h b/chrome/browser/ui/views/passwords/manage_passwords_bubble_view.h
index bd07c13f5f0de89c9ef845c716cacc453b2605d1..00f05f549317c7a21aa4d2348355e9b059261126 100644
--- a/chrome/browser/ui/views/passwords/manage_passwords_bubble_view.h
+++ b/chrome/browser/ui/views/passwords/manage_passwords_bubble_view.h
@@ -62,7 +62,7 @@ class ManagePasswordsBubbleView : public ManagePasswordsBubble,
ManagePasswordsBubbleView(content::WebContents* web_contents,
ManagePasswordsIconView* anchor_view,
DisplayReason reason);
- virtual ~ManagePasswordsBubbleView();
+ ~ManagePasswordsBubbleView() override;
// If the bubble is not anchored to a view, places the bubble in the top
// right (left in RTL) of the |screen_bounds| that contain |web_contents_|'s
@@ -90,16 +90,16 @@ class ManagePasswordsBubbleView : public ManagePasswordsBubble,
void NotifyUndoNeverForThisSite();
// views::BubbleDelegateView:
- virtual void Init() override;
- virtual void WindowClosing() override;
+ void Init() override;
+ void WindowClosing() override;
// views::WidgetDelegate:
- virtual views::View* GetInitiallyFocusedView() override;
+ views::View* GetInitiallyFocusedView() override;
// content::NotificationObserver:
- 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;
void set_initially_focused_view(views::View* view) {
DCHECK(!initially_focused_view_);

Powered by Google App Engine
This is Rietveld 408576698