| Index: net/quic/quic_flow_controller.cc
|
| diff --git a/net/quic/quic_flow_controller.cc b/net/quic/quic_flow_controller.cc
|
| index 795f2ce945987a2aa72f50dfb5ac2cadea557ac9..963d2e9f1763d509c2e01eed9b6fb4a22f19fe35 100644
|
| --- a/net/quic/quic_flow_controller.cc
|
| +++ b/net/quic/quic_flow_controller.cc
|
| @@ -4,7 +4,6 @@
|
|
|
| #include "net/quic/quic_flow_controller.h"
|
|
|
| -#include "base/basictypes.h"
|
| #include "net/quic/quic_connection.h"
|
| #include "net/quic/quic_flags.h"
|
| #include "net/quic/quic_protocol.h"
|
| @@ -228,7 +227,7 @@ bool QuicFlowController::IsBlocked() const {
|
| return SendWindowSize() == 0;
|
| }
|
|
|
| -uint64 QuicFlowController::SendWindowSize() const {
|
| +uint64_t QuicFlowController::SendWindowSize() const {
|
| if (bytes_sent_ > send_window_offset_) {
|
| return 0;
|
| }
|
|
|