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); |