| Index: ppapi/proxy/dispatcher.h
|
| diff --git a/ppapi/proxy/dispatcher.h b/ppapi/proxy/dispatcher.h
|
| index 797fa08900fdd1a0f8d9c7708ed4e4dde2d1a764..9fd2461dfdb4f606c13a36ac7450419ed28eba01 100644
|
| --- a/ppapi/proxy/dispatcher.h
|
| +++ b/ppapi/proxy/dispatcher.h
|
| @@ -10,6 +10,7 @@
|
| #include <vector>
|
|
|
| #include "base/callback_forward.h"
|
| +#include "base/compiler_specific.h"
|
| #include "base/memory/ref_counted.h"
|
| #include "base/tracked_objects.h"
|
| #include "ipc/ipc_channel_proxy.h"
|
| @@ -73,8 +74,8 @@ class PPAPI_PROXY_EXPORT Dispatcher : public ProxyChannel {
|
| // so we don't have to query for each one. We'll pre-create proxies for
|
| // each of the given interfaces.
|
|
|
| - // IPC::Channel::Listener implementation.
|
| - virtual bool OnMessageReceived(const IPC::Message& msg);
|
| + // IPC::Listener implementation.
|
| + virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE;
|
|
|
| PP_GetInterface_Func local_get_interface() const {
|
| return local_get_interface_;
|
|
|