| Index: net/quic/quic_http_stream.cc
|
| diff --git a/net/quic/quic_http_stream.cc b/net/quic/quic_http_stream.cc
|
| index d434d4160da9354799cff0d3593afa00d0f83468..d28eac9bbe613d6b73d60a5af914f0708e680240 100644
|
| --- a/net/quic/quic_http_stream.cc
|
| +++ b/net/quic/quic_http_stream.cc
|
| @@ -260,6 +260,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;
|
|
|