| Index: net/quic/quic_http_stream.cc
|
| diff --git a/net/quic/quic_http_stream.cc b/net/quic/quic_http_stream.cc
|
| index 5d7d60d5ccde7471f44af3b70641a91a579470db..85af67add8504c7de32312394c336fdd349a9041 100644
|
| --- a/net/quic/quic_http_stream.cc
|
| +++ b/net/quic/quic_http_stream.cc
|
| @@ -205,7 +205,9 @@ void QuicHttpStream::Close(bool not_reusable) {
|
| // Note: the not_reusable flag has no meaning for SPDY streams.
|
| if (stream_) {
|
| stream_->SetDelegate(NULL);
|
| - stream_->Close(QUIC_STREAM_NO_ERROR);
|
| + // TODO(rch): use new CANCELLED error code here once quic 11
|
| + // is everywhere.
|
| + stream_->Close(QUIC_SERVER_ERROR_PROCESSING_STREAM);
|
| stream_ = NULL;
|
| }
|
| }
|
|
|