diff options
author | willchan@chromium.org <willchan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-15 00:28:32 +0000 |
---|---|---|
committer | willchan@chromium.org <willchan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-15 00:28:32 +0000 |
commit | bd33ed7ac21b7c7fbee5b716092092434f62a469 (patch) | |
tree | 1af624ab76b385dc77ae16aa0607ab3f96fe660b /net/base | |
parent | 47b3b473b847a92005065094524a33bbdb8d134f (diff) | |
download | chromium_src-bd33ed7ac21b7c7fbee5b716092092434f62a469.zip chromium_src-bd33ed7ac21b7c7fbee5b716092092434f62a469.tar.gz chromium_src-bd33ed7ac21b7c7fbee5b716092092434f62a469.tar.bz2 |
Revert 47342 - Support SpdySession as a new NetLog source type. Start logging some more SPDY control frames.
BUG=43237
Review URL: http://codereview.chromium.org/2102003
TBR=willchan@chromium.org
Review URL: http://codereview.chromium.org/2118003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47343 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/base')
-rw-r--r-- | net/base/net_log.h | 1 | ||||
-rw-r--r-- | net/base/net_log_event_type_list.h | 35 |
2 files changed, 0 insertions, 36 deletions
diff --git a/net/base/net_log.h b/net/base/net_log.h index 02f0a4b..9270d78 100644 --- a/net/base/net_log.h +++ b/net/base/net_log.h @@ -59,7 +59,6 @@ class NetLog { SOURCE_INIT_PROXY_RESOLVER, SOURCE_CONNECT_JOB, SOURCE_SOCKET, - SOURCE_SPDY_SESSION, }; // Identifies the entity that generated this log. The |id| field should diff --git a/net/base/net_log_event_type_list.h b/net/base/net_log_event_type_list.h index 7ae2a69..7a75f26 100644 --- a/net/base/net_log_event_type_list.h +++ b/net/base/net_log_event_type_list.h @@ -366,34 +366,6 @@ EVENT_TYPE(SPDY_TRANSACTION_READ_HEADERS) EVENT_TYPE(SPDY_TRANSACTION_READ_BODY) // ------------------------------------------------------------------------ -// SpdySession -// ------------------------------------------------------------------------ - -// The start/end of a SpdySession. -EVENT_TYPE(SPDY_SESSION) - -// On sending a SPDY SETTINGS frame. -// The following parameters are attached: -// { -// "settings": <The list of setting id:value pairs> -// } -EVENT_TYPE(SPDY_SESSION_SEND_SETTINGS) - -// Receipt of a SPDY SETTINGS frame. -// The following parameters are attached: -// { -// "settings": <The list of setting id:value pairs> -// } -EVENT_TYPE(SPDY_SESSION_RECV_SETTINGS) - -// Receipt of a SPDY GOAWAY frame. -// The following parameters are attached: -// { -// "last_accepted_stream_id": <Last stream id accepted by the server, duh> -// } -EVENT_TYPE(SPDY_SESSION_GOAWAY) - -// ------------------------------------------------------------------------ // SpdyStream // ------------------------------------------------------------------------ @@ -430,13 +402,6 @@ EVENT_TYPE(SPDY_STREAM_READ_BODY) // Logs that a stream attached to a pushed stream. EVENT_TYPE(SPDY_STREAM_ADOPTED_PUSH_STREAM) -// The receipt of a RST_STREAM -// The following parameters are attached: -// { -// "status": <The reason for the RST_STREAM> -// } -EVENT_TYPE(SPDY_STREAM_RST_STREAM) - // ------------------------------------------------------------------------ // HttpStreamParser // ------------------------------------------------------------------------ |