| 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_);
|
|
|