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

Unified Diff: chrome/browser/automation/automation_provider.h

Issue 7661031: Tag IPC::Channel::Listener implementations with OVERRIDE (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 4 months 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 | « no previous file | chrome/browser/automation/automation_resource_message_filter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/automation/automation_provider.h
diff --git a/chrome/browser/automation/automation_provider.h b/chrome/browser/automation/automation_provider.h
index b389b88e0f8301200c16942fa22f73d53ec4afbc..9f3cd1fba6d394a62a5f80a15b7d1f2200ee1db8 100644
--- a/chrome/browser/automation/automation_provider.h
+++ b/chrome/browser/automation/automation_provider.h
@@ -127,11 +127,11 @@ class AutomationProvider
void AddLoginHandler(NavigationController* tab, LoginHandler* handler);
void RemoveLoginHandler(NavigationController* tab);
- // IPC implementations
- virtual bool Send(IPC::Message* msg);
- virtual void OnChannelConnected(int pid);
- virtual bool OnMessageReceived(const IPC::Message& msg);
- virtual void OnChannelError();
+ // IPC::Channel::Listener implementation.
+ virtual bool Send(IPC::Message* msg) OVERRIDE;
+ virtual void OnChannelConnected(int pid) OVERRIDE;
+ virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE;
+ virtual void OnChannelError() OVERRIDE;
IPC::Message* reply_message_release() {
IPC::Message* reply_message = reply_message_;
« no previous file with comments | « no previous file | chrome/browser/automation/automation_resource_message_filter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698