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 /chrome/browser/notifications | |
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 'chrome/browser/notifications')
-rw-r--r-- | chrome/browser/notifications/balloon_host.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/chrome/browser/notifications/balloon_host.h b/chrome/browser/notifications/balloon_host.h index 35ba1ff..1feabb2 100644 --- a/chrome/browser/notifications/balloon_host.h +++ b/chrome/browser/notifications/balloon_host.h @@ -50,19 +50,19 @@ class BalloonHost : public RenderViewHostDelegate, const string16& GetSource() const; // RenderViewHostDelegate overrides. - virtual WebPreferences GetWebkitPrefs(); - virtual const GURL& GetURL() const; - virtual void Close(RenderViewHost* render_view_host); - virtual void RenderViewCreated(RenderViewHost* render_view_host); - virtual void RenderViewReady(RenderViewHost* render_view_host); + virtual WebPreferences GetWebkitPrefs() OVERRIDE; + virtual const GURL& GetURL() const OVERRIDE; + virtual void Close(RenderViewHost* render_view_host) OVERRIDE; + virtual void RenderViewCreated(RenderViewHost* render_view_host) OVERRIDE; + virtual void RenderViewReady(RenderViewHost* render_view_host) OVERRIDE; virtual void RenderViewGone(RenderViewHost* render_view_host, base::TerminationStatus status, - int error_code); + int error_code) OVERRIDE; virtual void UpdateTitle(RenderViewHost* render_view_host, - int32 page_id, const std::wstring& title) {} - virtual ViewType::Type GetRenderViewType() const; - virtual RenderViewHostDelegate::View* GetViewDelegate(); - virtual void HandleMouseDown(); + int32 page_id, const std::wstring& title) OVERRIDE {} + virtual ViewType::Type GetRenderViewType() const OVERRIDE; + virtual RenderViewHostDelegate::View* GetViewDelegate() OVERRIDE; + virtual void HandleMouseDown() OVERRIDE; // RenderViewHostDelegate::View methods. Only the ones for opening new // windows are currently implemented. |