summaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorwillchan@chromium.org <willchan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-05-11 00:58:18 +0000
committerwillchan@chromium.org <willchan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-05-11 00:58:18 +0000
commitc215ed3f9c8f47ae4fe19f682e914b6964f4245a (patch)
tree2839f80f44722ff8a8ad2092174bb256fad289c9 /net
parentc3e815ac39d136f1e20892ea3bb348be04f15384 (diff)
downloadchromium_src-c215ed3f9c8f47ae4fe19f682e914b6964f4245a.zip
chromium_src-c215ed3f9c8f47ae4fe19f682e914b6964f4245a.tar.gz
chromium_src-c215ed3f9c8f47ae4fe19f682e914b6964f4245a.tar.bz2
Update comments for new request header events.
BUG=43812 Review URL: http://codereview.chromium.org/2035013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46880 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net')
-rw-r--r--net/base/net_log_event_type_list.h13
1 files changed, 4 insertions, 9 deletions
diff --git a/net/base/net_log_event_type_list.h b/net/base/net_log_event_type_list.h
index ce98f46..84ef02e 100644
--- a/net/base/net_log_event_type_list.h
+++ b/net/base/net_log_event_type_list.h
@@ -314,21 +314,16 @@ EVENT_TYPE(HTTP_TRANSACTION_SEND_REQUEST)
// This event is sent for a HTTP request.
// The following parameters are attached:
// {
-// "line": <The HTTP request line>
-// "headers": <The HTTP request headers>
+// "line": <The HTTP request line, CRLF terminated>
+// "headers": <The list of header:value pairs>
// }
EVENT_TYPE(HTTP_TRANSACTION_SEND_REQUEST_HEADERS)
// This event is sent for a tunnel request.
// The following parameters are attached:
// {
-// "line": <The HTTP request line>
-// "headers":
-// {
-// "header1": "value1",
-// ...
-// "headerX": "valueX"
-// }
+// "line": <The HTTP request line, CRLF terminated>
+// "headers": <The list of header:value pairs>
// }
EVENT_TYPE(HTTP_TRANSACTION_SEND_TUNNEL_HEADERS)