Chromium Code Reviews| Index: net/spdy/spdy_http_stream.h |
| =================================================================== |
| --- net/spdy/spdy_http_stream.h (revision 86260) |
| +++ net/spdy/spdy_http_stream.h (working copy) |
| @@ -10,6 +10,7 @@ |
| #include <string> |
| #include "base/basictypes.h" |
| +#include "base/logging.h" |
| #include "base/memory/ref_counted.h" |
| #include "base/task.h" |
| #include "net/base/completion_callback.h" |
| @@ -69,6 +70,15 @@ |
| SSLCertRequestInfo* cert_request_info) OVERRIDE; |
| virtual bool IsSpdyHttpStream() const OVERRIDE; |
| + virtual double GetRTTMs() const OVERRIDE { |
| + LOG(ERROR) << "Should not be called"; |
|
willchan no longer on Chromium
2011/06/06 10:57:36
Use NOTREACHED() instead.
Gagan
2011/06/06 20:27:10
Replaced with LogRttVsBytesMetrics as you suggeste
|
| + return 0; |
| + } |
| + virtual int GetBytesReceived() const OVERRIDE { |
| + LOG(ERROR) << "Should not be called"; |
| + return -1; |
| + } |
| + |
| // SpdyStream::Delegate methods: |
| virtual bool OnSendHeadersComplete(int status) OVERRIDE; |
| virtual int OnSendBody() OVERRIDE; |