| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 // NOTE: No header guards are used, since this file is intended to be expanded | 5 // NOTE: No header guards are used, since this file is intended to be expanded |
| 6 // directly into net_log.h. DO NOT include this file anywhere else. | 6 // directly into net_log.h. DO NOT include this file anywhere else. |
| 7 | 7 |
| 8 // In the event of a failure, a many end events will have a |net_error| | 8 // In the event of a failure, a many end events will have a |net_error| |
| 9 // parameter with the integer error code associated with the failure. Most | 9 // parameter with the integer error code associated with the failure. Most |
| 10 // of these parameters are not individually documented. | 10 // of these parameters are not individually documented. |
| (...skipping 1183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1194 // } | 1194 // } |
| 1195 EVENT_TYPE(SPDY_SESSION_POOL_REMOVE_SESSION) | 1195 EVENT_TYPE(SPDY_SESSION_POOL_REMOVE_SESSION) |
| 1196 | 1196 |
| 1197 // ------------------------------------------------------------------------ | 1197 // ------------------------------------------------------------------------ |
| 1198 // SpdyStream | 1198 // SpdyStream |
| 1199 // ------------------------------------------------------------------------ | 1199 // ------------------------------------------------------------------------ |
| 1200 | 1200 |
| 1201 // The begin and end of a SPDY STREAM. | 1201 // The begin and end of a SPDY STREAM. |
| 1202 EVENT_TYPE(SPDY_STREAM) | 1202 EVENT_TYPE(SPDY_STREAM) |
| 1203 | 1203 |
| 1204 // Logs that a stream attached to a pushed stream. | 1204 // A stream is attached to a pushed stream. |
| 1205 EVENT_TYPE(SPDY_STREAM_ADOPTED_PUSH_STREAM) | 1205 EVENT_TYPE(SPDY_STREAM_ADOPTED_PUSH_STREAM) |
| 1206 | 1206 |
| 1207 // A stream is unstalled by flow control. |
| 1208 EVENT_TYPE(SPDY_STREAM_FLOW_CONTROL_UNSTALLED) |
| 1209 |
| 1207 // This event indicates that the send window has been updated for a stream. | 1210 // This event indicates that the send window has been updated for a stream. |
| 1208 // { | 1211 // { |
| 1209 // "id": <The stream id>, | 1212 // "id": <The stream id>, |
| 1210 // "delta": <The window size delta>, | 1213 // "delta": <The window size delta>, |
| 1211 // "new_window": <The new window size>, | 1214 // "new_window": <The new window size>, |
| 1212 // } | 1215 // } |
| 1213 EVENT_TYPE(SPDY_STREAM_UPDATE_SEND_WINDOW) | 1216 EVENT_TYPE(SPDY_STREAM_UPDATE_SEND_WINDOW) |
| 1214 | 1217 |
| 1215 // This event indicates that the recv window has been updated for a stream. | 1218 // This event indicates that the recv window has been updated for a stream. |
| 1216 // { | 1219 // { |
| (...skipping 701 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1918 // } | 1921 // } |
| 1919 EVENT_TYPE(FTP_DATA_CONNECTION) | 1922 EVENT_TYPE(FTP_DATA_CONNECTION) |
| 1920 | 1923 |
| 1921 // This event is created when FTP control connection response is processed. | 1924 // This event is created when FTP control connection response is processed. |
| 1922 // It contains following parameters: | 1925 // It contains following parameters: |
| 1923 // { | 1926 // { |
| 1924 // "lines": <list of strings - each representing a line of the response> | 1927 // "lines": <list of strings - each representing a line of the response> |
| 1925 // "status_code": <numeric status code of the response> | 1928 // "status_code": <numeric status code of the response> |
| 1926 // } | 1929 // } |
| 1927 EVENT_TYPE(FTP_CONTROL_RESPONSE) | 1930 EVENT_TYPE(FTP_CONTROL_RESPONSE) |
| OLD | NEW |