| Index: net/quic/quic_http_stream.cc
|
| diff --git a/net/quic/quic_http_stream.cc b/net/quic/quic_http_stream.cc
|
| index ab46a6d2a10d4b49016cb3e11f7ed3c8eccabe47..39601c57eaf681ef875641821ed767c9b887f2e1 100644
|
| --- a/net/quic/quic_http_stream.cc
|
| +++ b/net/quic/quic_http_stream.cc
|
| @@ -264,6 +264,11 @@ int64 QuicHttpStream::GetTotalReceivedBytes() const {
|
| return closed_stream_received_bytes_;
|
| }
|
|
|
| +int64_t QuicHttpStream::GetTotalSentBytes() const {
|
| + // TODO(sclittle): Implement this for real. http://crbug.com/518897.
|
| + return 0;
|
| +}
|
| +
|
| bool QuicHttpStream::GetLoadTimingInfo(LoadTimingInfo* load_timing_info) const {
|
| // TODO(mmenke): Figure out what to do here.
|
| return true;
|
|
|