summaryrefslogtreecommitdiffstats
path: root/net/base
diff options
context:
space:
mode:
authorwillchan@chromium.org <willchan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-05-13 19:21:07 +0000
committerwillchan@chromium.org <willchan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-05-13 19:21:07 +0000
commit33c477b6420946bd37d3e5c18f63db2961bad4e4 (patch)
tree5b9f27b84058b3e1d8943dab24e7eee6dc843063 /net/base
parent96da696cd0f43a860dd4ea6b135b958f95ed5e52 (diff)
downloadchromium_src-33c477b6420946bd37d3e5c18f63db2961bad4e4.zip
chromium_src-33c477b6420946bd37d3e5c18f63db2961bad4e4.tar.gz
chromium_src-33c477b6420946bd37d3e5c18f63db2961bad4e4.tar.bz2
Add SPDY SYN_STREAM and SYN_REPLY events to about:net-internals.
BUG=43237 Review URL: http://codereview.chromium.org/2004010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47174 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/base')
-rw-r--r--net/base/net_log_event_type_list.h18
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)