OLD | NEW |
---|---|
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 import "mojo/services/public/interfaces/network/network_error.mojom" | 5 import "mojo/services/public/interfaces/network/network_error.mojom" |
6 | 6 |
7 module mojo { | 7 module mojo { |
8 | 8 |
9 interface WebSocket { | 9 interface WebSocket { |
10 enum MessageType { | 10 enum MessageType { |
11 CONTINUATION, | 11 CONTINUATION, |
12 TEXT, | 12 TEXT, |
13 BINARY | 13 BINARY |
14 }; | 14 }; |
15 const uint16 kAbnormalCloseCode = 1006; // stolen from websocket_bridge | 15 const uint16 kAbnormalCloseCode = 1006; // stolen from websocket_bridge |
16 | 16 |
17 Connect( | 17 Connect(string url, |
darin (slow to review)
2014/09/19 05:40:08
nit: please document the protocol here. it is not
Matt Perry
2014/09/19 19:50:45
I documented Send/Receive/Connect and explained th
| |
18 string url, string[] protocols, string origin, WebSocketClient client); | 18 string[] protocols, |
19 Send(bool fin, MessageType type, handle<data_pipe_consumer> data); | 19 string origin, |
20 handle<data_pipe_consumer> send_stream, | |
21 WebSocketClient client); | |
22 Send(bool fin, MessageType type, uint32 num_bytes); | |
20 FlowControl(int64 quota); | 23 FlowControl(int64 quota); |
21 Close(uint16 code, string reason); | 24 Close(uint16 code, string reason); |
22 }; | 25 }; |
23 | 26 |
24 interface WebSocketClient { | 27 interface WebSocketClient { |
25 DidConnect(bool fail, string selected_subprotocol, string extensions); | 28 DidConnect(bool fail, |
26 DidReceiveData( | 29 string selected_subprotocol, |
27 bool fin, WebSocket.MessageType type, handle<data_pipe_consumer> data); | 30 string extensions, |
31 handle<data_pipe_consumer> receive_stream); | |
32 DidReceiveData(bool fin, WebSocket.MessageType type, uint32 num_bytes); | |
28 DidReceiveFlowControl(int64 quota); | 33 DidReceiveFlowControl(int64 quota); |
29 DidFail(string message); | 34 DidFail(string message); |
30 DidClose(bool was_clean, uint16 code, string reason); | 35 DidClose(bool was_clean, uint16 code, string reason); |
31 | 36 |
32 // Blink has 3 extra methods that we don't implement, because they are used | 37 // Blink has 3 extra methods that we don't implement, because they are used |
33 // for the inspector: | 38 // for the inspector: |
34 // didStartOpeningHandshake | 39 // didStartOpeningHandshake |
35 // didFinishOpeningHandshake | 40 // didFinishOpeningHandshake |
36 // didStartClosingHandshake | 41 // didStartClosingHandshake |
37 }; | 42 }; |
38 | 43 |
39 } | 44 } |
OLD | NEW |