| Index: net/quic/quic_reliable_client_stream.cc
|
| diff --git a/net/quic/quic_reliable_client_stream.cc b/net/quic/quic_reliable_client_stream.cc
|
| index 26e6815bb11f796ee5d55fc7bdf1c81c06383b39..0a3ec6dcfcbb56d4c7b819fa45f5b8ea3dee7d84 100644
|
| --- a/net/quic/quic_reliable_client_stream.cc
|
| +++ b/net/quic/quic_reliable_client_stream.cc
|
| @@ -7,6 +7,7 @@
|
| #include "base/callback_helpers.h"
|
| #include "net/base/net_errors.h"
|
| #include "net/quic/quic_session.h"
|
| +#include "net/spdy/write_blocked_list.h"
|
|
|
| namespace net {
|
|
|
| @@ -54,6 +55,13 @@ void QuicReliableClientStream::OnCanWrite() {
|
| }
|
| }
|
|
|
| +QuicPriority QuicReliableClientStream::EffectivePriority() const {
|
| + if (delegate_->HasSendHeadersComplete()) {
|
| + return ReliableQuicStream::EffectivePriority();
|
| + }
|
| + return kHighestPriority;
|
| +}
|
| +
|
| int QuicReliableClientStream::WriteStreamData(
|
| base::StringPiece data,
|
| bool fin,
|
|
|