summaryrefslogtreecommitdiffstats
path: root/chrome/common/socket_stream_dispatcher.h
diff options
context:
space:
mode:
authorukai@chromium.org <ukai@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-12-07 06:13:39 +0000
committerukai@chromium.org <ukai@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-12-07 06:13:39 +0000
commit7661f67398aa39e42346892bf33258db69ac9da7 (patch)
treeaf87943a3c633eb09c73f76735fdb783a97ddbe5 /chrome/common/socket_stream_dispatcher.h
parent703e4d66f618720ca07ce00ff3fbe68810a661c3 (diff)
downloadchromium_src-7661f67398aa39e42346892bf33258db69ac9da7.zip
chromium_src-7661f67398aa39e42346892bf33258db69ac9da7.tar.gz
chromium_src-7661f67398aa39e42346892bf33258db69ac9da7.tar.bz2
WebSocket in Worker: render_thread->child_thread change.
SocketStream should be handled in ChildThread instead of RenderThread to be used in Worker process. Move SocketStream in chrome/common to satisfy check_deps. BUG=27618 TEST=none Review URL: http://codereview.chromium.org/443015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33954 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/socket_stream_dispatcher.h')
-rw-r--r--chrome/common/socket_stream_dispatcher.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/chrome/common/socket_stream_dispatcher.h b/chrome/common/socket_stream_dispatcher.h
new file mode 100644
index 0000000..8e3bbe4
--- /dev/null
+++ b/chrome/common/socket_stream_dispatcher.h
@@ -0,0 +1,38 @@
+// Copyright (c) 2009 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROME_COMMON_SOCKET_STREAM_DISPATCHER_H_
+#define CHROME_COMMON_SOCKET_STREAM_DISPATCHER_H_
+
+#include <vector>
+
+#include "base/basictypes.h"
+#include "ipc/ipc_channel.h"
+#include "ipc/ipc_message.h"
+#include "webkit/glue/websocketstreamhandle_bridge.h"
+
+// Dispatches socket stream related messages sent to a child process from the
+// main browser process. There is one instance per child process. Messages
+// are dispatched on the main child thread. The RenderThread class
+// creates an instance of SocketStreamDispatcher and delegates calls to it.
+class SocketStreamDispatcher {
+ public:
+ SocketStreamDispatcher();
+ ~SocketStreamDispatcher() {}
+
+ static webkit_glue::WebSocketStreamHandleBridge* CreateBridge(
+ WebKit::WebSocketStreamHandle* handle,
+ webkit_glue::WebSocketStreamHandleDelegate* delegate);
+ bool OnMessageReceived(const IPC::Message& msg);
+
+ private:
+ void OnConnected(int socket_id, int max_amount_send_allowed);
+ void OnSentData(int socket_id, int amount_sent);
+ void OnReceivedData(int socket_id, const std::vector<char>& data);
+ void OnClosed(int socket_id);
+
+ DISALLOW_COPY_AND_ASSIGN(SocketStreamDispatcher);
+};
+
+#endif // CHROME_COMMON_SOCKET_STREAM_DISPATCHER_H_