OLD | NEW |
---|---|
1 This directory contains files related to Chromium's WebSocket | 1 This directory contains files related to Chromium's WebSocket |
2 implementation. See http://www.websocket.org/ for an explanation of WebSockets. | 2 implementation. See http://www.websocket.org/ for an explanation of WebSockets. |
3 | 3 |
4 As of April 2013, the contents of this directory are in a transitional state, | 4 As of April 2013, the contents of this directory are in a transitional state, |
5 and contain parts of two different WebSocket implementations. | 5 and contain parts of two different WebSocket implementations. |
6 | 6 |
7 The following files are part of the legacy implementation. The legacy | 7 The following files are part of the legacy implementation. The legacy |
8 implementation performs WebSocket framing within Blink and presents a | 8 implementation performs WebSocket framing within Blink and presents a |
9 low-level socket-like interface to the renderer process. It is described in the | 9 low-level socket-like interface to the renderer process. It is described in the |
10 design doc at | 10 design doc at |
(...skipping 13 matching lines...) Expand all Loading... | |
24 websocket_net_log_params_unittest.cc | 24 websocket_net_log_params_unittest.cc |
25 websocket_throttle.cc | 25 websocket_throttle.cc |
26 websocket_throttle.h | 26 websocket_throttle.h |
27 websocket_throttle_unittest.cc | 27 websocket_throttle_unittest.cc |
28 | 28 |
29 The following files are part of the new implementation. The new implementation | 29 The following files are part of the new implementation. The new implementation |
30 performs framing and implements protocol semantics in the browser process, and | 30 performs framing and implements protocol semantics in the browser process, and |
31 presents a high-level interface to the renderer process similar to a | 31 presents a high-level interface to the renderer process similar to a |
32 multiplexing proxy. This is not yet used in any stable Chromium version. | 32 multiplexing proxy. This is not yet used in any stable Chromium version. |
33 | 33 |
34 websocket_channel.cc | |
35 websocket_channel.h | |
34 websocket_errors.cc | 36 websocket_errors.cc |
35 websocket_errors.h | 37 websocket_errors.h |
36 websocket_errors_unittest.cc | 38 websocket_errors_unittest.cc |
37 websocket_frame.cc | 39 websocket_frame.cc |
38 websocket_frame.h | 40 websocket_frame.h |
39 websocket_frame_parser.cc | 41 websocket_frame_parser.cc |
40 websocket_frame_parser.h | 42 websocket_frame_parser.h |
41 websocket_frame_parser_unittest.cc | 43 websocket_frame_parser_unittest.cc |
42 websocket_frame_unittest.cc | 44 websocket_frame_unittest.cc |
45 websocket_mux.h | |
43 websocket_stream.h | 46 websocket_stream.h |
szym
2013/07/09 15:59:51
Mind adding websocket_stream.cc and websocket_stre
Adam Rice
2013/07/11 13:28:17
Done. I added a PRESUBMIT check ( https://coderevi
| |
OLD | NEW |