| Index: components/web_modal/popup_manager.h
|
| diff --git a/components/web_modal/popup_manager.h b/components/web_modal/popup_manager.h
|
| index 0ce4a583f1045691d7d80c94d6028aae2cae46d9..9d0c9fb7216e3af5bdb04295be6be9f7815a09fe 100644
|
| --- a/components/web_modal/popup_manager.h
|
| +++ b/components/web_modal/popup_manager.h
|
| @@ -27,7 +27,7 @@ class PopupManager : public SinglePopupManagerDelegate {
|
| // |host| may be null.
|
| PopupManager(WebContentsModalDialogHost* host);
|
|
|
| - virtual ~PopupManager();
|
| + ~PopupManager() override;
|
|
|
| // Returns the native view which will be the parent of managed popups.
|
| virtual gfx::NativeView GetHostView() const;
|
| @@ -48,7 +48,7 @@ class PopupManager : public SinglePopupManagerDelegate {
|
| const content::WebContents* web_contents) const;
|
|
|
| // Called when a NativePopup we own is about to be closed.
|
| - virtual void WillClose(NativePopup popup) override;
|
| + void WillClose(NativePopup popup) override;
|
|
|
| // Called by views code to re-activate popups anchored to a particular tab
|
| // when that tab gets focus. Note that depending on the situation, more than
|
|
|