Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "net/spdy/spdy_http_stream.h" | 5 #include "net/spdy/spdy_http_stream.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <list> | 8 #include <list> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 122 } else { | 122 } else { |
| 123 const int bytes_remaining = data->size() - bytes_to_copy; | 123 const int bytes_remaining = data->size() - bytes_to_copy; |
| 124 IOBufferWithSize* new_buffer = new IOBufferWithSize(bytes_remaining); | 124 IOBufferWithSize* new_buffer = new IOBufferWithSize(bytes_remaining); |
| 125 memcpy(new_buffer->data(), &(data->data()[bytes_to_copy]), | 125 memcpy(new_buffer->data(), &(data->data()[bytes_to_copy]), |
| 126 bytes_remaining); | 126 bytes_remaining); |
| 127 response_body_.pop_front(); | 127 response_body_.pop_front(); |
| 128 response_body_.push_front(make_scoped_refptr(new_buffer)); | 128 response_body_.push_front(make_scoped_refptr(new_buffer)); |
| 129 } | 129 } |
| 130 bytes_read += bytes_to_copy; | 130 bytes_read += bytes_to_copy; |
| 131 } | 131 } |
| 132 if (spdy_session_ && spdy_session_->is_flow_control_enabled()) | 132 if (spdy_session_) |
|
willchan no longer on Chromium
2012/02/14 19:16:44
We don't need this if statement at all, do we?
ramant (doing other things)
2012/02/16 00:23:15
Done.
| |
| 133 stream_->IncreaseRecvWindowSize(bytes_read); | 133 stream_->IncreaseRecvWindowSize(bytes_read); |
| 134 return bytes_read; | 134 return bytes_read; |
| 135 } else if (stream_->closed()) { | 135 } else if (stream_->closed()) { |
| 136 return stream_->response_status(); | 136 return stream_->response_status(); |
| 137 } | 137 } |
| 138 | 138 |
| 139 CHECK(callback_.is_null()); | 139 CHECK(callback_.is_null()); |
| 140 CHECK(!user_buffer_); | 140 CHECK(!user_buffer_); |
| 141 CHECK_EQ(0, user_buffer_len_); | 141 CHECK_EQ(0, user_buffer_len_); |
| 142 | 142 |
| (...skipping 349 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 492 bool SpdyHttpStream::IsSpdyHttpStream() const { | 492 bool SpdyHttpStream::IsSpdyHttpStream() const { |
| 493 return true; | 493 return true; |
| 494 } | 494 } |
| 495 | 495 |
| 496 void SpdyHttpStream::Drain(HttpNetworkSession* session) { | 496 void SpdyHttpStream::Drain(HttpNetworkSession* session) { |
| 497 Close(false); | 497 Close(false); |
| 498 delete this; | 498 delete this; |
| 499 } | 499 } |
| 500 | 500 |
| 501 } // namespace net | 501 } // namespace net |
| OLD | NEW |