| Index: components/web_modal/web_contents_modal_dialog_manager.h
|
| diff --git a/components/web_modal/web_contents_modal_dialog_manager.h b/components/web_modal/web_contents_modal_dialog_manager.h
|
| index 19d844c7d06db1abf6d9e3efeca6ca4d49b6740a..4817753fc02fac8f5802d91a8f07d6e3ad806f7f 100644
|
| --- a/components/web_modal/web_contents_modal_dialog_manager.h
|
| +++ b/components/web_modal/web_contents_modal_dialog_manager.h
|
| @@ -50,8 +50,8 @@ class WebContentsModalDialogManager
|
| void FocusTopmostDialog() const;
|
|
|
| // SingleWebContentsDialogManagerDelegate:
|
| - virtual content::WebContents* GetWebContents() const OVERRIDE;
|
| - virtual void WillClose(NativeWebContentsModalDialog dialog) OVERRIDE;
|
| + virtual content::WebContents* GetWebContents() const override;
|
| + virtual void WillClose(NativeWebContentsModalDialog dialog) override;
|
|
|
| // For testing.
|
| class TestApi {
|
| @@ -101,12 +101,12 @@ class WebContentsModalDialogManager
|
| // Overridden from content::WebContentsObserver:
|
| virtual void DidNavigateMainFrame(
|
| const content::LoadCommittedDetails& details,
|
| - const content::FrameNavigateParams& params) OVERRIDE;
|
| - virtual void DidGetIgnoredUIEvent() OVERRIDE;
|
| - virtual void WasShown() OVERRIDE;
|
| - virtual void WasHidden() OVERRIDE;
|
| - virtual void WebContentsDestroyed() OVERRIDE;
|
| - virtual void DidAttachInterstitialPage() OVERRIDE;
|
| + const content::FrameNavigateParams& params) override;
|
| + virtual void DidGetIgnoredUIEvent() override;
|
| + virtual void WasShown() override;
|
| + virtual void WasHidden() override;
|
| + virtual void WebContentsDestroyed() override;
|
| + virtual void DidAttachInterstitialPage() override;
|
|
|
| // Delegate for notifying our owner about stuff. Not owned by us.
|
| WebContentsModalDialogManagerDelegate* delegate_;
|
|
|