diff options
author | willchan@chromium.org <willchan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-13 19:21:07 +0000 |
---|---|---|
committer | willchan@chromium.org <willchan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-13 19:21:07 +0000 |
commit | 33c477b6420946bd37d3e5c18f63db2961bad4e4 (patch) | |
tree | 5b9f27b84058b3e1d8943dab24e7eee6dc843063 /net/spdy/spdy_stream.cc | |
parent | 96da696cd0f43a860dd4ea6b135b958f95ed5e52 (diff) | |
download | chromium_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/spdy/spdy_stream.cc')
-rw-r--r-- | net/spdy/spdy_stream.cc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/net/spdy/spdy_stream.cc b/net/spdy/spdy_stream.cc index 547a1f0..74ad637 100644 --- a/net/spdy/spdy_stream.cc +++ b/net/spdy/spdy_stream.cc @@ -12,8 +12,8 @@ namespace net { -SpdyStream::SpdyStream(SpdySession* session, spdy::SpdyStreamId stream_id, - bool pushed, const BoundNetLog& log) +SpdyStream::SpdyStream( + SpdySession* session, spdy::SpdyStreamId stream_id, bool pushed) : stream_id_(stream_id), priority_(0), pushed_(pushed), @@ -30,7 +30,6 @@ SpdyStream::SpdyStream(SpdySession* session, spdy::SpdyStreamId stream_id, user_buffer_(NULL), user_buffer_len_(0), cancelled_(false), - net_log_(log), send_bytes_(0), recv_bytes_(0), histograms_recorded_(false), |