| Index: net/tools/quic/quic_spdy_client_stream.cc
|
| diff --git a/net/tools/quic/quic_spdy_client_stream.cc b/net/tools/quic/quic_spdy_client_stream.cc
|
| index 3618df6c08e1c91dd77a08ee87e6fe63759706ad..2d649cda8d1781bcde030ef132e153b09ea23a57 100644
|
| --- a/net/tools/quic/quic_spdy_client_stream.cc
|
| +++ b/net/tools/quic/quic_spdy_client_stream.cc
|
| @@ -119,7 +119,14 @@ int QuicSpdyClientStream::ParseResponseHeaders() {
|
| }
|
|
|
| void QuicSpdyClientStream::SendBody(const string& data, bool fin) {
|
| - WriteOrBufferData(data, fin, nullptr);
|
| + SendBody(data, fin, nullptr);
|
| +}
|
| +
|
| +void QuicSpdyClientStream::SendBody(
|
| + const string& data,
|
| + bool fin,
|
| + QuicAckNotifier::DelegateInterface* delegate) {
|
| + WriteOrBufferData(data, fin, delegate);
|
| }
|
|
|
| } // namespace tools
|
|
|