Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1530)

Unified Diff: content/child/child_thread_impl.h

Issue 2119973002: Port WebSockets to Mojo IPC (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove unused code Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/child/child_thread_impl.h
diff --git a/content/child/child_thread_impl.h b/content/child/child_thread_impl.h
index 368089076a95972d9a2504d65b3f0b88b0aad6e2..403d31cbbffbb00b3d551f91d0ac9479ca7b7266 100644
--- a/content/child/child_thread_impl.h
+++ b/content/child/child_thread_impl.h
@@ -61,8 +61,6 @@ class QuotaDispatcher;
class QuotaMessageFilter;
class ResourceDispatcher;
class ThreadSafeSender;
-class WebSocketDispatcher;
-class WebSocketMessageFilter;
struct RequestInfo;
// The main thread of a child process derives from this class.
@@ -141,10 +139,6 @@ class CONTENT_EXPORT ChildThreadImpl
return resource_dispatcher_.get();
}
- WebSocketDispatcher* websocket_dispatcher() const {
- return websocket_dispatcher_.get();
- }
-
FileSystemDispatcher* file_system_dispatcher() const {
return file_system_dispatcher_.get();
}
@@ -188,10 +182,6 @@ class CONTENT_EXPORT ChildThreadImpl
return resource_message_filter_.get();
}
- WebSocketMessageFilter* websocket_message_filter() const {
- return websocket_message_filter_.get();
- }
-
base::MessageLoop* message_loop() const { return message_loop_; }
// Returns the one child thread. Can only be called on the main thread.
@@ -272,8 +262,6 @@ class CONTENT_EXPORT ChildThreadImpl
// Handles resource loads for this process.
std::unique_ptr<ResourceDispatcher> resource_dispatcher_;
- std::unique_ptr<WebSocketDispatcher> websocket_dispatcher_;
-
// The OnChannelError() callback was invoked - the channel is dead, don't
// attempt to communicate.
bool on_channel_error_called_;
@@ -292,8 +280,6 @@ class CONTENT_EXPORT ChildThreadImpl
scoped_refptr<QuotaMessageFilter> quota_message_filter_;
- scoped_refptr<WebSocketMessageFilter> websocket_message_filter_;
-
scoped_refptr<NotificationDispatcher> notification_dispatcher_;
scoped_refptr<PushDispatcher> push_dispatcher_;

Powered by Google App Engine
This is Rietveld 408576698