| Index: net/quic/core/quic_stream.cc
|
| diff --git a/net/quic/core/quic_stream.cc b/net/quic/core/quic_stream.cc
|
| index 21f407c5261272d306ee30e6af0a6dfe9c5342a5..651a9906dd445c3e5a078a277cec0337c23fc234 100644
|
| --- a/net/quic/core/quic_stream.cc
|
| +++ b/net/quic/core/quic_stream.cc
|
| @@ -12,7 +12,6 @@
|
| #include "net/quic/core/quic_write_blocked_list.h"
|
|
|
| using base::StringPiece;
|
| -using std::min;
|
| using std::string;
|
|
|
| namespace net {
|
| @@ -287,7 +286,7 @@ QuicConsumedData QuicStream::WritevData(
|
| QuicByteCount send_window = flow_controller_.SendWindowSize();
|
| if (stream_contributes_to_connection_flow_control_) {
|
| send_window =
|
| - min(send_window, connection_flow_controller_->SendWindowSize());
|
| + std::min(send_window, connection_flow_controller_->SendWindowSize());
|
| }
|
|
|
| if (session_->ShouldYield(id())) {
|
|
|