diff options
Diffstat (limited to 'net/http/http_stream.h')
-rw-r--r-- | net/http/http_stream.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/net/http/http_stream.h b/net/http/http_stream.h index 7ca2203..66fd97c 100644 --- a/net/http/http_stream.h +++ b/net/http/http_stream.h @@ -135,6 +135,10 @@ class NET_TEST HttpStream { // the HttpStream implementation. This is just a quick hack. virtual bool IsSpdyHttpStream() const = 0; + // Record histogram of number of round trips taken to download the full + // response body vs bytes transferred. + virtual void LogNumRttVsBytesMetrics() const = 0; + private: DISALLOW_COPY_AND_ASSIGN(HttpStream); }; |