Chromium Code Reviews| Index: net/log/net_log_event_type_list.h |
| diff --git a/net/log/net_log_event_type_list.h b/net/log/net_log_event_type_list.h |
| index 1f7a46888419df00552f00bff47e9be8067d9599..c20313e220700ac01f8c3464c98ae66d531ee08b 100644 |
| --- a/net/log/net_log_event_type_list.h |
| +++ b/net/log/net_log_event_type_list.h |
| @@ -1170,6 +1170,15 @@ EVENT_TYPE(HTTP_TRANSACTION_RESTART_AFTER_ERROR) |
| // BidirectionalStream |
| // ------------------------------------------------------------------------ |
| +// Marks the creation/destruction of a net::BidirectionalStream. |
| +// The event parameters are: |
|
mef
2016/04/28 20:43:18
The following parameters are attached:
xunjieli
2016/04/28 21:06:15
Done.
|
| +// { |
| +// "url": <The URL actually being used>, |
|
mef
2016/04/28 20:43:18
I'm not sure that "actually" is applicable here as
xunjieli
2016/04/28 21:06:15
Done. Artifact of copy and paste :) Good catch.
|
| +// "method": <The HTTP method being used>, |
| +// "headers": <The HTTP headers going to be sent with this request>, |
|
mef
2016/04/28 20:43:18
<The list of header:value pairs>,
xunjieli
2016/04/28 21:06:15
Done.
|
| +// } |
| +EVENT_TYPE(BIDIRECTIONAL_STREAM_ALIVE) |
| + |
| // The specified number of bytes were sent on the stream. Depending on the |
| // source of the event, may be logged either once the data is sent, or when it |
| // is queued to be sent. |
| @@ -1190,6 +1199,20 @@ EVENT_TYPE(BIDIRECTIONAL_STREAM_BYTES_SENT) |
| // } |
| EVENT_TYPE(BIDIRECTIONAL_STREAM_BYTES_RECEIVED) |
| +// This event is sent for receiving headers on the stream. |
| +// The following parameters are attached: |
| +// { |
| +// "headers": <The list of header:value pairs>, |
| +// } |
| +EVENT_TYPE(BIDIRECTIONAL_STREAM_RECV_HEADERS) |
| + |
| +// This event is sent for receiving trailers on the stream. |
| +// The following parameters are attached: |
| +// { |
| +// "headers": <The list of header:value pairs>, |
| +// } |
| +EVENT_TYPE(BIDIRECTIONAL_STREAM_RECV_TRAILERS) |
| + |
| // ------------------------------------------------------------------------ |
| // SpdySession |
| // ------------------------------------------------------------------------ |