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

Unified Diff: content/common/message_router.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
« no previous file with comments | « content/common/hi_res_timer_manager.h ('k') | content/common/np_channel_base.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/message_router.h
diff --git a/content/common/message_router.h b/content/common/message_router.h
index cb97f3f34d51b8c1d95b09534a6b23e803d41086..d0d9c7548f9a3f17242289347b1a57ddd9ca2b6b 100644
--- a/content/common/message_router.h
+++ b/content/common/message_router.h
@@ -37,7 +37,7 @@ class MessageRouter : public IPC::Channel::Listener,
virtual bool OnControlMessageReceived(const IPC::Message& msg);
// IPC::Channel::Listener implementation:
- virtual bool OnMessageReceived(const IPC::Message& msg);
+ virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE;
// Like OnMessageReceived, except it only handles routed messages. Returns
// true if the message was dispatched, or false if there was no listener for
@@ -45,7 +45,7 @@ class MessageRouter : public IPC::Channel::Listener,
virtual bool RouteMessage(const IPC::Message& msg);
// IPC::Message::Sender implementation:
- virtual bool Send(IPC::Message* msg);
+ virtual bool Send(IPC::Message* msg) OVERRIDE;
// Called to add/remove a listener for a particular message routing ID.
void AddRoute(int32 routing_id, IPC::Channel::Listener* listener);
« no previous file with comments | « content/common/hi_res_timer_manager.h ('k') | content/common/np_channel_base.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698