Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 833 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 844 EVENT_TYPE(SPDY_SESSION_RST_STREAM) | 844 EVENT_TYPE(SPDY_SESSION_RST_STREAM) |
| 845 | 845 |
| 846 // Sending of a RST_STREAM | 846 // Sending of a RST_STREAM |
| 847 // The following parameters are attached: | 847 // The following parameters are attached: |
| 848 // { | 848 // { |
| 849 // "stream_id": <The stream ID for the window update>, | 849 // "stream_id": <The stream ID for the window update>, |
| 850 // "status": <The reason for the RST_STREAM>, | 850 // "status": <The reason for the RST_STREAM>, |
| 851 // } | 851 // } |
| 852 EVENT_TYPE(SPDY_SESSION_SEND_RST_STREAM) | 852 EVENT_TYPE(SPDY_SESSION_SEND_RST_STREAM) |
| 853 | 853 |
| 854 // Sending of a SPDY PING frame. | |
| 855 // The following parameters are attached: | |
| 856 // { | |
| 857 // "stream_id": <The stream ID for the window update>, | |
|
willchan no longer on Chromium
2011/10/12 05:41:06
There shouldn't be a stream_id.
ramant (doing other things)
2011/10/13 21:41:14
Done.
| |
| 858 // "unique_id": <The unique_id of the PING message>, | |
| 859 // } | |
| 860 EVENT_TYPE(SPDY_SESSION_PING) | |
| 861 | |
| 854 // Receipt of a SPDY GOAWAY frame. | 862 // Receipt of a SPDY GOAWAY frame. |
| 855 // The following parameters are attached: | 863 // The following parameters are attached: |
| 856 // { | 864 // { |
| 857 // "last_accepted_stream_id": <Last stream id accepted by the server, duh>, | 865 // "last_accepted_stream_id": <Last stream id accepted by the server, duh>, |
| 858 // "active_streams": <Number of active streams>, | 866 // "active_streams": <Number of active streams>, |
| 859 // "unclaimed_streams": <Number of unclaimed push streams>, | 867 // "unclaimed_streams": <Number of unclaimed push streams>, |
| 860 // } | 868 // } |
| 861 EVENT_TYPE(SPDY_SESSION_GOAWAY) | 869 EVENT_TYPE(SPDY_SESSION_GOAWAY) |
| 862 | 870 |
| 863 // Receipt of a SPDY WINDOW_UPDATE frame (which controls the send window). | 871 // Receipt of a SPDY WINDOW_UPDATE frame (which controls the send window). |
| (...skipping 345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1209 | 1217 |
| 1210 // ------------------------------------------------------------------------ | 1218 // ------------------------------------------------------------------------ |
| 1211 // HostBlacklistManager | 1219 // HostBlacklistManager |
| 1212 // ------------------------------------------------------------------------ | 1220 // ------------------------------------------------------------------------ |
| 1213 | 1221 |
| 1214 // TODO(joaodasilva): Layering violation, see comment above. | 1222 // TODO(joaodasilva): Layering violation, see comment above. |
| 1215 // http://crbug.com/90674. | 1223 // http://crbug.com/90674. |
| 1216 | 1224 |
| 1217 // This event is created when a request is blocked by a policy. | 1225 // This event is created when a request is blocked by a policy. |
| 1218 EVENT_TYPE(CHROME_POLICY_ABORTED_REQUEST) | 1226 EVENT_TYPE(CHROME_POLICY_ABORTED_REQUEST) |
| OLD | NEW |