Index: net/quic/quic_flow_controller.cc |
diff --git a/net/quic/quic_flow_controller.cc b/net/quic/quic_flow_controller.cc |
index b145280ef0632978a0533d38b26f870984081af0..722b243b01054f69dfa411ee994ea21bc61a46cd 100644 |
--- a/net/quic/quic_flow_controller.cc |
+++ b/net/quic/quic_flow_controller.cc |
@@ -163,10 +163,12 @@ bool QuicFlowController::UpdateSendWindowOffset(uint64 new_send_window_offset) { |
DVLOG(1) << ENDPOINT << "UpdateSendWindowOffset for stream " << id_ |
<< " with new offset " << new_send_window_offset |
- << " , current offset: " << send_window_offset_; |
+ << " current offset: " << send_window_offset_ |
+ << " bytes_sent: " << bytes_sent_; |
+ const bool blocked = IsBlocked(); |
send_window_offset_ = new_send_window_offset; |
- return true; |
+ return blocked; |
} |
void QuicFlowController::Disable() { |