diff options
author | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-25 21:41:54 +0000 |
---|---|---|
committer | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-25 21:41:54 +0000 |
commit | 544e27f8cf3b8948bf1f6e2f2970fd0d2520b28e (patch) | |
tree | 3f32383a2df91c318138163330f3ad0a2ae71a20 /content/browser/tab_contents/interstitial_page.h | |
parent | a240550043436c4318b22da1335ba0c33b1418bc (diff) | |
download | chromium_src-544e27f8cf3b8948bf1f6e2f2970fd0d2520b28e.zip chromium_src-544e27f8cf3b8948bf1f6e2f2970fd0d2520b28e.tar.gz chromium_src-544e27f8cf3b8948bf1f6e2f2970fd0d2520b28e.tar.bz2 |
Tag all users of RenderViewHostDelegate with OVERRIDE
I want to change one of the API signatures slightly and I'm afraid
of missing a user. So here I tagged every file that had the string
"public RenderViewHostDelegate" in it.
Review URL: http://codereview.chromium.org/7467005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93964 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/tab_contents/interstitial_page.h')
-rw-r--r-- | content/browser/tab_contents/interstitial_page.h | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/content/browser/tab_contents/interstitial_page.h b/content/browser/tab_contents/interstitial_page.h index 5087762..a0e6d2a 100644 --- a/content/browser/tab_contents/interstitial_page.h +++ b/content/browser/tab_contents/interstitial_page.h @@ -116,17 +116,18 @@ class InterstitialPage : public NotificationObserver, const NotificationDetails& details); // RenderViewHostDelegate implementation: - virtual View* GetViewDelegate(); - virtual const GURL& GetURL() const; + virtual View* GetViewDelegate() OVERRIDE; + virtual const GURL& GetURL() const OVERRIDE; virtual void RenderViewGone(RenderViewHost* render_view_host, base::TerminationStatus status, - int error_code); - virtual void DidNavigate(RenderViewHost* render_view_host, - const ViewHostMsg_FrameNavigate_Params& params); + int error_code) OVERRIDE; + virtual void DidNavigate( + RenderViewHost* render_view_host, + const ViewHostMsg_FrameNavigate_Params& params) OVERRIDE; virtual void UpdateTitle(RenderViewHost* render_view_host, int32 page_id, - const std::wstring& title); - virtual RendererPreferences GetRendererPrefs(Profile* profile) const; + const std::wstring& title) OVERRIDE; + virtual RendererPreferences GetRendererPrefs(Profile* profile) const OVERRIDE; // Invoked with the NavigationEntry that is going to be added to the // navigation controller. |