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

Unified Diff: content/browser/renderer_host/browser_render_process_host.h

Issue 8587009: Add OVERRIDE to content/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 9 years, 1 month 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: content/browser/renderer_host/browser_render_process_host.h
diff --git a/content/browser/renderer_host/browser_render_process_host.h b/content/browser/renderer_host/browser_render_process_host.h
index 68c2d47aaa433f88a84b12a26724c9067a527db2..9303cbf01049d5eaaad53bc372a43a7d8c7c7954 100644
--- a/content/browser/renderer_host/browser_render_process_host.h
+++ b/content/browser/renderer_host/browser_render_process_host.h
@@ -50,28 +50,29 @@ class CONTENT_EXPORT BrowserRenderProcessHost
virtual ~BrowserRenderProcessHost();
// RenderProcessHost implementation (public portion).
- virtual void EnableSendQueue();
- virtual bool Init(bool is_accessibility_enabled);
- virtual int GetNextRoutingID();
- virtual void CancelResourceRequests(int render_widget_id);
- virtual void CrossSiteSwapOutACK(const ViewMsg_SwapOut_Params& params);
+ virtual void EnableSendQueue() OVERRIDE;
+ virtual bool Init(bool is_accessibility_enabled) OVERRIDE;
+ virtual int GetNextRoutingID() OVERRIDE;
+ virtual void CancelResourceRequests(int render_widget_id) OVERRIDE;
+ virtual void CrossSiteSwapOutACK(
+ const ViewMsg_SwapOut_Params& params) OVERRIDE;
virtual bool WaitForUpdateMsg(int render_widget_id,
const base::TimeDelta& max_delay,
- IPC::Message* msg);
- virtual void ReceivedBadMessage();
- virtual void WidgetRestored();
- virtual void WidgetHidden();
- virtual int VisibleWidgetCount() const;
- virtual bool FastShutdownIfPossible();
- virtual void DumpHandles();
- virtual base::ProcessHandle GetHandle();
- virtual TransportDIB* GetTransportDIB(TransportDIB::Id dib_id);
+ IPC::Message* msg) OVERRIDE;
+ virtual void ReceivedBadMessage() OVERRIDE;
+ virtual void WidgetRestored() OVERRIDE;
+ virtual void WidgetHidden() OVERRIDE;
+ virtual int VisibleWidgetCount() const OVERRIDE;
+ virtual bool FastShutdownIfPossible() OVERRIDE;
+ virtual void DumpHandles() OVERRIDE;
+ virtual base::ProcessHandle GetHandle() OVERRIDE;
+ virtual TransportDIB* GetTransportDIB(TransportDIB::Id dib_id) OVERRIDE;
virtual void SetCompositingSurface(
int render_widget_id,
- gfx::PluginWindowHandle compositing_surface);
+ gfx::PluginWindowHandle compositing_surface) OVERRIDE;
// IPC::Channel::Sender via RenderProcessHost.
- virtual bool Send(IPC::Message* msg);
+ virtual bool Send(IPC::Message* msg) OVERRIDE;
// IPC::Channel::Listener via RenderProcessHost.
virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE;
@@ -79,7 +80,7 @@ class CONTENT_EXPORT BrowserRenderProcessHost
virtual void OnChannelError() OVERRIDE;
// ChildProcessLauncher::Client implementation.
- virtual void OnProcessLaunched();
+ virtual void OnProcessLaunched() OVERRIDE;
// base::WaitableEventWatcher::Delegate implementation.
virtual void OnWaitableEventSignaled(
« no previous file with comments | « content/browser/renderer_host/blob_message_filter.h ('k') | content/browser/renderer_host/buffered_resource_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698