| Index: net/quic/quic_write_blocked_list.h
|
| diff --git a/net/quic/quic_write_blocked_list.h b/net/quic/quic_write_blocked_list.h
|
| index 1e58e405f07a5ca449e7464d7848f80edb11d033..3ac4bf11c6b34bf31895b608a6ef7344a228fbef 100644
|
| --- a/net/quic/quic_write_blocked_list.h
|
| +++ b/net/quic/quic_write_blocked_list.h
|
| @@ -26,9 +26,8 @@ class NET_EXPORT_PRIVATE QuicWriteBlockedList {
|
| ~QuicWriteBlockedList();
|
|
|
| bool HasWriteBlockedStreams() const {
|
| - return crypto_stream_blocked_ ||
|
| - headers_stream_blocked_ ||
|
| - base_write_blocked_list_.HasWriteBlockedStreams();
|
| + return crypto_stream_blocked_ || headers_stream_blocked_ ||
|
| + base_write_blocked_list_.HasWriteBlockedStreams();
|
| }
|
|
|
| size_t NumBlockedStreams() const {
|
| @@ -67,8 +66,8 @@ class NET_EXPORT_PRIVATE QuicWriteBlockedList {
|
| // TODO(avd) Add DCHECK(!headers_stream_blocked_);
|
| headers_stream_blocked_ = true;
|
| } else {
|
| - base_write_blocked_list_.PushBack(
|
| - stream_id, static_cast<SpdyPriority>(priority));
|
| + base_write_blocked_list_.PushBack(stream_id,
|
| + static_cast<SpdyPriority>(priority));
|
| }
|
| }
|
|
|
| @@ -82,5 +81,4 @@ class NET_EXPORT_PRIVATE QuicWriteBlockedList {
|
|
|
| } // namespace net
|
|
|
| -
|
| #endif // NET_QUIC_QUIC_WRITE_BLOCKED_LIST_H_
|
|
|