Chromium Code Reviews| Index: net/base/net_log_event_type_list.h |
| diff --git a/net/base/net_log_event_type_list.h b/net/base/net_log_event_type_list.h |
| index 10fa5c472b1be10e3ac558220d42c93f34d1be49..3072c03b5bc922633af6dfad3d493cc74fba504e 100644 |
| --- a/net/base/net_log_event_type_list.h |
| +++ b/net/base/net_log_event_type_list.h |
| @@ -1217,6 +1217,39 @@ EVENT_TYPE(SPDY_PROXY_CLIENT_SESSION) |
| // } |
| // ------------------------------------------------------------------------ |
| +// QuicSession |
| +// ------------------------------------------------------------------------ |
| + |
| +// The start/end of a QuicSession. |
| +// { |
| +// "host": <The host-port string>, |
| +// "proxy": <The Proxy PAC string>, |
| +// } |
| +EVENT_TYPE(QUIC_SESSION) |
| + |
| +// Session is closing because of an error. |
| +// { |
| +// "error" : <The error status of the closure>, |
|
eroman
2013/02/05 23:17:30
What is the domain of these errors? For instance,
Ryan Hamilton
2013/02/05 23:35:29
Awesome! Done.
|
| +// } |
| +EVENT_TYPE(QUIC_SESSION_CLOSE_ON_ERROR) |
| + |
| +// ------------------------------------------------------------------------ |
| +// QuicHttpStream |
| +// ------------------------------------------------------------------------ |
| + |
| +// The stream is sending the request headers. |
| +// { |
| +// "headers": <The list of header:value pairs> |
| +// } |
| +EVENT_TYPE(QUIC_HTTP_STREAM_SEND_REQUEST_HEADERS) |
| + |
| +// The stream has read the response headers. |
| +// { |
| +// "headers": <The list of header:value pairs> |
| +// } |
| +EVENT_TYPE(QUIC_HTTP_STREAM_READ_RESPONSE_HEADERS) |
| + |
| +// ------------------------------------------------------------------------ |
| // HttpStreamParser |
| // ------------------------------------------------------------------------ |