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

Unified Diff: content/common/npobject_stub.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/npobject_proxy.h ('k') | content/common/pepper_plugin_registry.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/npobject_stub.h
diff --git a/content/common/npobject_stub.h b/content/common/npobject_stub.h
index b99ef64f0e031b9d4005fc57f76cae5cf3d5cf39..9b64ce8f75e7e6875a01e7dd28966da7f2b1fbe2 100644
--- a/content/common/npobject_stub.h
+++ b/content/common/npobject_stub.h
@@ -45,16 +45,16 @@ class NPObjectStub : public IPC::Channel::Listener,
void DeleteSoon();
// IPC::Message::Sender implementation:
- virtual bool Send(IPC::Message* msg);
+ virtual bool Send(IPC::Message* msg) OVERRIDE;
// NPObjectBase implementation.
- virtual NPObject* GetUnderlyingNPObject();
- virtual IPC::Channel::Listener* GetChannelListener();
+ virtual NPObject* GetUnderlyingNPObject() OVERRIDE;
+ virtual IPC::Channel::Listener* GetChannelListener() OVERRIDE;
private:
// IPC::Channel::Listener implementation:
- virtual bool OnMessageReceived(const IPC::Message& message);
- virtual void OnChannelError();
+ virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
+ virtual void OnChannelError() OVERRIDE;
// message handlers
void OnRelease(IPC::Message* reply_msg);
« no previous file with comments | « content/common/npobject_proxy.h ('k') | content/common/pepper_plugin_registry.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698