1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CONTENT_CHILD_WEBSOCKET_DISPATCHER_H_
6 #define CONTENT_CHILD_WEBSOCKET_DISPATCHER_H_
13 #include "base/basictypes.h"
14 #include "base/compiler_specific.h"
15 #include "ipc/ipc_listener.h"
19 class WebSocketBridge
;
21 // Dispatches WebSocket related messages sent to a child process from the
22 // main browser process. There is one instance per child process. Messages
23 // are dispatched on the main child thread. The ChildThread class
24 // creates an instance of WebSocketDispatcher and delegates calls to it.
25 class WebSocketDispatcher
: public IPC::Listener
{
27 WebSocketDispatcher();
28 ~WebSocketDispatcher() override
;
30 // Returns a unique channel id
31 int AddBridge(WebSocketBridge
* bridge
);
32 void RemoveBridge(int channel_id
);
34 // IPC::Listener implementation.
35 bool OnMessageReceived(const IPC::Message
& msg
) override
;
38 WebSocketBridge
* GetBridge(int channel_id
, uint32 type
);
40 std::map
<int, WebSocketBridge
*> bridges_
;
43 DISALLOW_COPY_AND_ASSIGN(WebSocketDispatcher
);
46 } // namespace content
48 #endif // CONTENT_CHILD_WEBSOCKET_DISPATCHER_H_