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 17 matching lines...) Expand all Loading... |
28 performs framing and implements protocol semantics in the browser process, and | 28 performs framing and implements protocol semantics in the browser process, and |
29 presents a high-level interface to the renderer process similar to a | 29 presents a high-level interface to the renderer process similar to a |
30 multiplexing proxy. This is not yet used in any stable Chromium version. | 30 multiplexing proxy. This is not yet used in any stable Chromium version. |
31 | 31 |
32 websocket_basic_stream.cc | 32 websocket_basic_stream.cc |
33 websocket_basic_stream.h | 33 websocket_basic_stream.h |
34 websocket_basic_stream_test.cc | 34 websocket_basic_stream_test.cc |
35 websocket_channel.cc | 35 websocket_channel.cc |
36 websocket_channel.h | 36 websocket_channel.h |
37 websocket_channel_test.cc | 37 websocket_channel_test.cc |
| 38 websocket_deflate_predictor.h |
38 websocket_deflate_stream.cc | 39 websocket_deflate_stream.cc |
39 websocket_deflate_stream.h | 40 websocket_deflate_stream.h |
40 websocket_deflate_stream_test.cc | 41 websocket_deflate_stream_test.cc |
41 websocket_deflater.cc | 42 websocket_deflater.cc |
42 websocket_deflater.h | 43 websocket_deflater.h |
43 websocket_deflater_test.cc | 44 websocket_deflater_test.cc |
44 websocket_errors.cc | 45 websocket_errors.cc |
45 websocket_errors.h | 46 websocket_errors.h |
46 websocket_extension.cc | 47 websocket_extension.cc |
47 websocket_extension.h | 48 websocket_extension.h |
(...skipping 19 matching lines...) Expand all Loading... |
67 websocket_test_util.h | 68 websocket_test_util.h |
68 | 69 |
69 These files are shared between the old and new implementations. | 70 These files are shared between the old and new implementations. |
70 | 71 |
71 websocket_handshake_constants.cc | 72 websocket_handshake_constants.cc |
72 websocket_handshake_constants.h | 73 websocket_handshake_constants.h |
73 | 74 |
74 A pre-submit check helps us keep this README file up-to-date: | 75 A pre-submit check helps us keep this README file up-to-date: |
75 | 76 |
76 PRESUBMIT.py | 77 PRESUBMIT.py |
OLD | NEW |