Chromium Code Reviews| Index: net/http/http_basic_stream.h |
| =================================================================== |
| --- net/http/http_basic_stream.h (revision 86260) |
| +++ net/http/http_basic_stream.h (working copy) |
| @@ -81,6 +81,10 @@ |
| virtual bool IsSpdyHttpStream() const OVERRIDE; |
| + virtual double GetRTTMs() const OVERRIDE; |
|
willchan no longer on Chromium
2011/06/06 10:57:36
When I first read this, I was wondering what a RTT
Gagan
2011/06/06 20:27:10
Done.
|
| + |
| + virtual int GetBytesReceived() const OVERRIDE; |
| + |
| private: |
| scoped_refptr<GrowableIOBuffer> read_buf_; |
| @@ -94,6 +98,8 @@ |
| const HttpRequestInfo* request_info_; |
| + int bytes_read_offset_; |
| + |
| DISALLOW_COPY_AND_ASSIGN(HttpBasicStream); |
| }; |