diff options
Diffstat (limited to 'content/ppapi_plugin/ppapi_thread.h')
-rw-r--r-- | content/ppapi_plugin/ppapi_thread.h | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/content/ppapi_plugin/ppapi_thread.h b/content/ppapi_plugin/ppapi_thread.h index d1ca550..8a06c4d 100644 --- a/content/ppapi_plugin/ppapi_thread.h +++ b/content/ppapi_plugin/ppapi_thread.h @@ -16,7 +16,6 @@ #include "build/build_config.h" #include "content/child/child_thread.h" #include "content/public/common/pepper_plugin_info.h" -#include "ipc/ipc_listener.h" #include "ppapi/c/pp_module.h" #include "ppapi/c/trusted/ppp_broker.h" #include "ppapi/proxy/connection.h" @@ -62,22 +61,6 @@ class PpapiThread : public ChildThread, LOAD_RESULT_MAX // Boundary value for UMA_HISTOGRAM_ENUMERATION. }; - // This class finds the target PluginDispatcher for each message it receives - // and forwards the message. - class DispatcherMessageListener : public IPC::Listener { - public: - explicit DispatcherMessageListener(PpapiThread* owner); - virtual ~DispatcherMessageListener(); - - // IPC::Listener implementation. - virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE; - - private: - PpapiThread* owner_; - - DISALLOW_COPY_AND_ASSIGN(DispatcherMessageListener); - }; - // ChildThread overrides. virtual bool Send(IPC::Message* msg) OVERRIDE; virtual bool OnControlMessageReceived(const IPC::Message& msg) OVERRIDE; @@ -173,8 +156,6 @@ class PpapiThread : public ChildThread, base::win::ScopedHandle peer_handle_; #endif - DispatcherMessageListener dispatcher_message_listener_; - DISALLOW_IMPLICIT_CONSTRUCTORS(PpapiThread); }; |