Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(581)

Unified Diff: net/quic/quic_write_blocked_list.h

Issue 266243004: Clang format slam. Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_

Powered by Google App Engine
This is Rietveld 408576698