| Index: content/browser/renderer_host/mock_render_process_host.h
|
| diff --git a/content/browser/renderer_host/mock_render_process_host.h b/content/browser/renderer_host/mock_render_process_host.h
|
| index fbbfc7436d9f7f3c54efc611030f3ee964c39402..f3f8fc9288501f9127802667d4a07da10304b7f8 100644
|
| --- a/content/browser/renderer_host/mock_render_process_host.h
|
| +++ b/content/browser/renderer_host/mock_render_process_host.h
|
| @@ -32,29 +32,30 @@ class MockRenderProcessHost : public RenderProcessHost {
|
| int bad_msg_count() const { return bad_msg_count_; }
|
|
|
| // 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;
|
| + IPC::Message* msg) OVERRIDE;
|
| + virtual void ReceivedBadMessage() OVERRIDE;
|
| + virtual void WidgetRestored() OVERRIDE;
|
| + virtual void WidgetHidden() OVERRIDE;
|
| + virtual int VisibleWidgetCount() const OVERRIDE;
|
| virtual void AddWord(const string16& word);
|
| - virtual bool FastShutdownIfPossible();
|
| - virtual void DumpHandles();
|
| - virtual base::ProcessHandle GetHandle();
|
| - virtual TransportDIB* GetTransportDIB(TransportDIB::Id dib_id);
|
| + 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;
|
|
|