diff options
Diffstat (limited to 'content/common/npobject_proxy.h')
-rw-r--r-- | content/common/npobject_proxy.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/content/common/npobject_proxy.h b/content/common/npobject_proxy.h index 1902dd1..23e0183 100644 --- a/content/common/npobject_proxy.h +++ b/content/common/npobject_proxy.h @@ -39,7 +39,7 @@ class NPObjectProxy : public IPC::Channel::Listener, const GURL& page_url); // IPC::Message::Sender implementation: - virtual bool Send(IPC::Message* msg); + virtual bool Send(IPC::Message* msg) OVERRIDE; int route_id() { return route_id_; } NPChannelBase* channel() { return channel_; } @@ -91,9 +91,9 @@ class NPObjectProxy : public IPC::Channel::Listener, static const NPClass* npclass() { return &npclass_proxy_; } // NPObjectBase implementation. - virtual NPObject* GetUnderlyingNPObject(); + virtual NPObject* GetUnderlyingNPObject() OVERRIDE; - virtual IPC::Channel::Listener* GetChannelListener(); + virtual IPC::Channel::Listener* GetChannelListener() OVERRIDE; private: NPObjectProxy(NPChannelBase* channel, @@ -102,8 +102,8 @@ class NPObjectProxy : public IPC::Channel::Listener, const GURL& page_url); // IPC::Channel::Listener implementation: - virtual bool OnMessageReceived(const IPC::Message& msg); - virtual void OnChannelError(); + virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE; + virtual void OnChannelError() OVERRIDE; static NPObject* NPAllocate(NPP, NPClass*); static void NPDeallocate(NPObject* npObj); |