| 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 22 matching lines...) Expand all Loading... |
| 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_deflater.h | 38 websocket_deflater.h |
| 39 websocket_deflater.cc | 39 websocket_deflater.cc |
| 40 websocket_deflater_test.cc | 40 websocket_deflater_test.cc |
| 41 websocket_errors.cc | 41 websocket_errors.cc |
| 42 websocket_errors.h | 42 websocket_errors.h |
| 43 websocket_extension.cc |
| 44 websocket_extension.h |
| 45 websocket_extension_parser.cc |
| 46 websocket_extension_parser.h |
| 47 websocket_extension_parser_test.cc |
| 43 websocket_errors_test.cc | 48 websocket_errors_test.cc |
| 44 websocket_event_interface.h | 49 websocket_event_interface.h |
| 45 websocket_frame.cc | 50 websocket_frame.cc |
| 46 websocket_frame.h | 51 websocket_frame.h |
| 47 websocket_frame_parser.cc | 52 websocket_frame_parser.cc |
| 48 websocket_frame_parser.h | 53 websocket_frame_parser.h |
| 49 websocket_frame_parser_test.cc | 54 websocket_frame_parser_test.cc |
| 50 websocket_frame_test.cc | 55 websocket_frame_test.cc |
| 51 websocket_mux.h | 56 websocket_mux.h |
| 52 websocket_stream_base.h | 57 websocket_stream_base.h |
| 53 websocket_stream.cc | 58 websocket_stream.cc |
| 54 websocket_stream.h | 59 websocket_stream.h |
| 55 | 60 |
| 56 These files are shared between the old and new implementations. | 61 These files are shared between the old and new implementations. |
| 57 | 62 |
| 58 websocket_handshake_constants.cc | 63 websocket_handshake_constants.cc |
| 59 websocket_handshake_constants.h | 64 websocket_handshake_constants.h |
| 60 | 65 |
| 61 A pre-submit check helps us keep this README file up-to-date: | 66 A pre-submit check helps us keep this README file up-to-date: |
| 62 | 67 |
| 63 PRESUBMIT.py | 68 PRESUBMIT.py |
| OLD | NEW |