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

Unified Diff: mojo/services/network/web_socket_impl.h

Issue 550003005: Mojo: WebSocket interface now reuses the DataPipe for subsequent sends or (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: give up Created 6 years, 3 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: mojo/services/network/web_socket_impl.h
diff --git a/mojo/services/network/web_socket_impl.h b/mojo/services/network/web_socket_impl.h
index 65808592be9334b1464b8f76e65d4d20dd5fc596..bd8a27d3cbd13c539b3417b90622b7740e493b17 100644
--- a/mojo/services/network/web_socket_impl.h
+++ b/mojo/services/network/web_socket_impl.h
@@ -16,6 +16,7 @@ class WebSocketChannel;
namespace mojo {
class NetworkContext;
+class WebSocketReadQueue;
// Forms a bridge between the WebSocket mojo interface and the net::WebSocket
// implementation.
@@ -25,22 +26,28 @@ class WebSocketImpl : public InterfaceImpl<WebSocket> {
virtual ~WebSocketImpl();
private:
- class PendingWriteToDataPipe;
- class DependentIOBuffer;
-
// WebSocket methods:
virtual void Connect(const String& url,
Array<String> protocols,
const String& origin,
+ ScopedDataPipeConsumerHandle send_stream,
WebSocketClientPtr client) OVERRIDE;
virtual void Send(bool fin,
WebSocket::MessageType type,
- ScopedDataPipeConsumerHandle data) OVERRIDE;
+ uint32_t num_bytes) OVERRIDE;
virtual void FlowControl(int64_t quota) OVERRIDE;
virtual void Close(uint16_t code, const String& reason) OVERRIDE;
+ // Called with the data to send once it has been read from |send_stream_|.
+ void DidReadFromSendStream(bool fin,
+ WebSocket::MessageType type,
+ uint32_t num_bytes,
+ const char* data);
+
// The channel we use to send events to the network.
scoped_ptr<net::WebSocketChannel> channel_;
+ ScopedDataPipeConsumerHandle send_stream_;
+ scoped_ptr<WebSocketReadQueue> read_queue_;
NetworkContext* context_;
};

Powered by Google App Engine
This is Rietveld 408576698