diff options
Diffstat (limited to 'net/base')
-rw-r--r-- | net/base/net_log_event_type_list.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/net/base/net_log_event_type_list.h b/net/base/net_log_event_type_list.h index 8fdcf80..86e6ffd 100644 --- a/net/base/net_log_event_type_list.h +++ b/net/base/net_log_event_type_list.h @@ -367,12 +367,30 @@ EVENT_TYPE(SPDY_TRANSACTION_READ_BODY) // SpdyStream // ------------------------------------------------------------------------ +// This event is sent for a SPDY SYN_STREAM. +// The following parameters are attached: +// { +// "flags": <The control frame flags> +// "headers": <The list of header:value pairs> +// "id": <The stream id> +// } +EVENT_TYPE(SPDY_STREAM_SYN_STREAM) + // Measures the time taken to send headers on a stream. EVENT_TYPE(SPDY_STREAM_SEND_HEADERS) // Measures the time taken to send the body (e.g. a POST) on a stream. EVENT_TYPE(SPDY_STREAM_SEND_BODY) +// This event is sent for a SPDY SYN_REPLY. +// The following parameters are attached: +// { +// "flags": <The control frame flags> +// "headers": <The list of header:value pairs> +// "id": <The stream id> +// } +EVENT_TYPE(SPDY_STREAM_SYN_REPLY) + // Measures the time taken to read headers on a stream. EVENT_TYPE(SPDY_STREAM_READ_HEADERS) |