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

Unified Diff: content/browser/renderer_host/mock_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/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;

Powered by Google App Engine
This is Rietveld 408576698