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

Unified Diff: components/web_modal/web_contents_modal_dialog_manager.h

Issue 623133002: replace OVERRIDE and FINAL with override and final in components/ (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: 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_;

Powered by Google App Engine
This is Rietveld 408576698