diff --git a/src/net/spdy/spdy_stream.cc b/src/net/spdy/spdy_stream.cc index f871d64ed7..6bfef85429 100644 --- a/src/net/spdy/spdy_stream.cc +++ b/src/net/spdy/spdy_stream.cc @@ -545,6 +545,7 @@ void SpdyStream::OnDataReceived(std::unique_ptr buffer) { if (!buffer) { if (io_state_ == STATE_OPEN) { io_state_ = STATE_HALF_CLOSED_REMOTE; + delegate_->OnDataReceived(nullptr); } else if (io_state_ == STATE_HALF_CLOSED_LOCAL) { io_state_ = STATE_CLOSED; // Deletes |this|.