Index: content/browser/renderer_host/websocket_dispatcher_host.cc |
=================================================================== |
--- content/browser/renderer_host/websocket_dispatcher_host.cc (revision 252600) |
+++ content/browser/renderer_host/websocket_dispatcher_host.cc (working copy) |
@@ -25,8 +25,7 @@ |
WebSocketDispatcherHost::WebSocketDispatcherHost( |
const GetRequestContextCallback& get_context_callback) |
- : BrowserMessageFilter(WebSocketMsgStart), |
- get_context_callback_(get_context_callback), |
+ : get_context_callback_(get_context_callback), |
websocket_host_factory_( |
base::Bind(&WebSocketDispatcherHost::CreateWebSocketHost, |
base::Unretained(this))) {} |
@@ -34,8 +33,7 @@ |
WebSocketDispatcherHost::WebSocketDispatcherHost( |
const GetRequestContextCallback& get_context_callback, |
const WebSocketHostFactory& websocket_host_factory) |
- : BrowserMessageFilter(WebSocketMsgStart), |
- get_context_callback_(get_context_callback), |
+ : get_context_callback_(get_context_callback), |
websocket_host_factory_(websocket_host_factory) {} |
WebSocketHost* WebSocketDispatcherHost::CreateWebSocketHost(int routing_id) { |