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 // "unique_id": <The unique_id of the PING message>, | |
|
willchan no longer on Chromium
2011/10/13 06:38:39
You don't need the underscore in the description o
ramant (doing other things)
2011/10/13 21:41:14
Done.
| |
| 858 // } | |
| 859 EVENT_TYPE(SPDY_SESSION_PING) | |
| 860 | |
| 854 // Receipt of a SPDY GOAWAY frame. | 861 // Receipt of a SPDY GOAWAY frame. |
| 855 // The following parameters are attached: | 862 // The following parameters are attached: |
| 856 // { | 863 // { |
| 857 // "last_accepted_stream_id": <Last stream id accepted by the server, duh>, | 864 // "last_accepted_stream_id": <Last stream id accepted by the server, duh>, |
| 858 // "active_streams": <Number of active streams>, | 865 // "active_streams": <Number of active streams>, |
| 859 // "unclaimed_streams": <Number of unclaimed push streams>, | 866 // "unclaimed_streams": <Number of unclaimed push streams>, |
| 860 // } | 867 // } |
| 861 EVENT_TYPE(SPDY_SESSION_GOAWAY) | 868 EVENT_TYPE(SPDY_SESSION_GOAWAY) |
| 862 | 869 |
| 863 // Receipt of a SPDY WINDOW_UPDATE frame (which controls the send window). | 870 // Receipt of a SPDY WINDOW_UPDATE frame (which controls the send window). |
| (...skipping 353 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1217 | 1224 |
| 1218 // ------------------------------------------------------------------------ | 1225 // ------------------------------------------------------------------------ |
| 1219 // HostBlacklistManager | 1226 // HostBlacklistManager |
| 1220 // ------------------------------------------------------------------------ | 1227 // ------------------------------------------------------------------------ |
| 1221 | 1228 |
| 1222 // TODO(joaodasilva): Layering violation, see comment above. | 1229 // TODO(joaodasilva): Layering violation, see comment above. |
| 1223 // http://crbug.com/90674. | 1230 // http://crbug.com/90674. |
| 1224 | 1231 |
| 1225 // This event is created when a request is blocked by a policy. | 1232 // This event is created when a request is blocked by a policy. |
| 1226 EVENT_TYPE(CHROME_POLICY_ABORTED_REQUEST) | 1233 EVENT_TYPE(CHROME_POLICY_ABORTED_REQUEST) |
| OLD | NEW |