Index: net/quic/quic_flow_controller.h |
diff --git a/net/quic/quic_flow_controller.h b/net/quic/quic_flow_controller.h |
index 1b5ed613e0ae3bd51a570785ace81f58b6a5f14c..afa022b1cf2c8812905fbfe8756289326aab0665 100644 |
--- a/net/quic/quic_flow_controller.h |
+++ b/net/quic/quic_flow_controller.h |
@@ -27,7 +27,7 @@ class NET_EXPORT_PRIVATE QuicFlowController { |
public: |
QuicFlowController(QuicConnection* connection, |
QuicStreamId id, |
- bool is_server, |
+ Perspective perspective, |
QuicStreamOffset send_window_offset, |
QuicStreamOffset receive_window_offset, |
QuicByteCount max_receive_window); |
@@ -83,8 +83,8 @@ class NET_EXPORT_PRIVATE QuicFlowController { |
// connection level flow controller. |
QuicStreamId id_; |
- // True if this is owned by a server. |
- bool is_server_; |
+ // Tracks if this is owned by a server or a client. |
+ Perspective perspective_; |
// Track number of bytes received from the peer, which have been consumed |
// locally. |