diff options
author | mbelshe@chromium.org <mbelshe@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-03 21:30:39 +0000 |
---|---|---|
committer | mbelshe@chromium.org <mbelshe@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-03 21:30:39 +0000 |
commit | e20cc6db1994ad4b789aebbae578f7928ca12af8 (patch) | |
tree | 2ee65df0f34107ae0e59a3b8d4166e0466ec786a /net/base | |
parent | 41e0c0d3aefe5965bf1c0a3e0fc723001de1f863 (diff) | |
download | chromium_src-e20cc6db1994ad4b789aebbae578f7928ca12af8.zip chromium_src-e20cc6db1994ad4b789aebbae578f7928ca12af8.tar.gz chromium_src-e20cc6db1994ad4b789aebbae578f7928ca12af8.tar.bz2 |
Cleanup the LOG(INFO)s out of the SpdyStream. Most of the logging was
redundant, so it is removed. Next changelist will refactor the way we do
headers from the HttpNetworkTransaction, which will move the header logging
back into the stream. then I think I'm done.
BUG=53956
TEST=none
Review URL: http://codereview.chromium.org/3331012
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@58541 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/base')
-rw-r--r-- | net/base/net_log_event_type_list.h | 28 |
1 files changed, 16 insertions, 12 deletions
diff --git a/net/base/net_log_event_type_list.h b/net/base/net_log_event_type_list.h index 35159d4..d47e575 100644 --- a/net/base/net_log_event_type_list.h +++ b/net/base/net_log_event_type_list.h @@ -677,21 +677,25 @@ EVENT_TYPE(SPDY_SESSION_POOL_REMOVE_SESSION) // The begin and end of a SPDY STREAM. EVENT_TYPE(SPDY_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) - -// Measures the time taken to send headers on a stream. -EVENT_TYPE(SPDY_STREAM_RECV_HEADERS) - -// Measures the time taken to read the body on a stream. -EVENT_TYPE(SPDY_STREAM_READ_BODY) - // Logs that a stream attached to a pushed stream. EVENT_TYPE(SPDY_STREAM_ADOPTED_PUSH_STREAM) +// This event indicates that the send window has been updated +// { +// "id": <The stream id>, +// "delta": <The window size delta>, +// "new_window": <The new window size>, +// } +EVENT_TYPE(SPDY_STREAM_SEND_WINDOW_UPDATE) + +// This event indicates that the recv window has been updated +// { +// "id": <The stream id>, +// "delta": <The window size delta>, +// "new_window": <The new window size>, +// } +EVENT_TYPE(SPDY_STREAM_RECV_WINDOW_UPDATE) + // ------------------------------------------------------------------------ // HttpStreamParser // ------------------------------------------------------------------------ |