Index: content/child/child_thread.cc |
diff --git a/content/child/child_thread.cc b/content/child/child_thread.cc |
index 6bbc4a46edd3653951e7d3df529ee5aea1a9e0ad..de85d4fff39cb9542695e17485a722a4a1675258 100644 |
--- a/content/child/child_thread.cc |
+++ b/content/child/child_thread.cc |
@@ -40,7 +40,6 @@ |
#include "content/child/quota_message_filter.h" |
#include "content/child/resource_dispatcher.h" |
#include "content/child/service_worker/service_worker_message_filter.h" |
-#include "content/child/socket_stream_dispatcher.h" |
#include "content/child/thread_safe_sender.h" |
#include "content/child/websocket_dispatcher.h" |
#include "content/common/child_process_messages.h" |
@@ -274,7 +273,6 @@ void ChildThread::Init(const Options& options) { |
base::MessageLoopProxy::current().get(), sync_message_filter_.get()); |
resource_dispatcher_.reset(new ResourceDispatcher(this)); |
- socket_stream_dispatcher_.reset(new SocketStreamDispatcher()); |
websocket_dispatcher_.reset(new WebSocketDispatcher); |
file_system_dispatcher_.reset(new FileSystemDispatcher()); |
@@ -464,8 +462,6 @@ bool ChildThread::OnMessageReceived(const IPC::Message& msg) { |
// Resource responses are sent to the resource dispatcher. |
if (resource_dispatcher_->OnMessageReceived(msg)) |
return true; |
- if (socket_stream_dispatcher_->OnMessageReceived(msg)) |
- return true; |
if (websocket_dispatcher_->OnMessageReceived(msg)) |
return true; |
if (file_system_dispatcher_->OnMessageReceived(msg)) |