diff options
author | ricea <ricea@chromium.org> | 2014-10-24 01:53:55 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-10-24 08:54:19 +0000 |
commit | 8e60ab5d142eaa8c04a385f265f1c328ad5a9b6d (patch) | |
tree | 0b6ffb9e8244fe12c6ccd75b8bec7126ec6bfb7d /content/child/child_thread.h | |
parent | 821aa6e20b4e447f8e37525be247dfd5bd83feff (diff) | |
download | chromium_src-8e60ab5d142eaa8c04a385f265f1c328ad5a9b6d.zip chromium_src-8e60ab5d142eaa8c04a385f265f1c328ad5a9b6d.tar.gz chromium_src-8e60ab5d142eaa8c04a385f265f1c328ad5a9b6d.tar.bz2 |
Remove old WebSocket implementation from content/
Remove the old SocketStream-based WebSocket implementation from
content/.
Large parts of the implementation still exist in net/. They will be
removed in a subsequent CL.
There are also a few traces in chrome/, and some interfaces in Blink
that cannot be removed until this CL is submitted.
BUG=423201
TEST=layout tests, browser_tests
Review URL: https://codereview.chromium.org/655253006
Cr-Commit-Position: refs/heads/master@{#301075}
Diffstat (limited to 'content/child/child_thread.h')
-rw-r--r-- | content/child/child_thread.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/content/child/child_thread.h b/content/child/child_thread.h index c718000..6c71c0f 100644 --- a/content/child/child_thread.h +++ b/content/child/child_thread.h @@ -46,7 +46,6 @@ class ServiceWorkerMessageFilter; class QuotaDispatcher; class QuotaMessageFilter; class ResourceDispatcher; -class SocketStreamDispatcher; class ThreadSafeSender; class WebSocketDispatcher; struct RequestInfo; @@ -106,10 +105,6 @@ class CONTENT_EXPORT ChildThread : public IPC::Listener, public IPC::Sender { return resource_dispatcher_.get(); } - SocketStreamDispatcher* socket_stream_dispatcher() const { - return socket_stream_dispatcher_.get(); - } - WebSocketDispatcher* websocket_dispatcher() const { return websocket_dispatcher_.get(); } @@ -222,9 +217,6 @@ class CONTENT_EXPORT ChildThread : public IPC::Listener, public IPC::Sender { // Handles resource loads for this process. scoped_ptr<ResourceDispatcher> resource_dispatcher_; - // Handles SocketStream for this process. - scoped_ptr<SocketStreamDispatcher> socket_stream_dispatcher_; - scoped_ptr<WebSocketDispatcher> websocket_dispatcher_; // The OnChannelError() callback was invoked - the channel is dead, don't |