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

Unified Diff: net/quic/quic_write_blocked_list_test.cc

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_test.cc
diff --git a/net/quic/quic_write_blocked_list_test.cc b/net/quic/quic_write_blocked_list_test.cc
index d8633ea7dc4793cf67c59b8bea2b060612268ab4..d6d24da02f226d7919ed6c65556e6cc5a8da4e3e 100644
--- a/net/quic/quic_write_blocked_list_test.cc
+++ b/net/quic/quic_write_blocked_list_test.cc
@@ -15,12 +15,9 @@ TEST(QuicWriteBlockedListTest, PriorityOrder) {
// Mark streams blocked in roughly reverse priority order, and
// verify that streams are sorted.
- write_blocked_list.PushBack(40,
- QuicWriteBlockedList::kLowestPriority);
- write_blocked_list.PushBack(23,
- QuicWriteBlockedList::kHighestPriority);
- write_blocked_list.PushBack(17,
- QuicWriteBlockedList::kHighestPriority);
+ write_blocked_list.PushBack(40, QuicWriteBlockedList::kLowestPriority);
+ write_blocked_list.PushBack(23, QuicWriteBlockedList::kHighestPriority);
+ write_blocked_list.PushBack(17, QuicWriteBlockedList::kHighestPriority);
write_blocked_list.PushBack(kHeadersStreamId,
QuicWriteBlockedList::kHighestPriority);
write_blocked_list.PushBack(kCryptoStreamId,
@@ -68,8 +65,7 @@ TEST(QuicWriteBlockedListTest, HeadersStream) {
TEST(QuicWriteBlockedListTest, VerifyHeadersStream) {
QuicWriteBlockedList write_blocked_list;
- write_blocked_list.PushBack(5,
- QuicWriteBlockedList::kHighestPriority);
+ write_blocked_list.PushBack(5, QuicWriteBlockedList::kHighestPriority);
write_blocked_list.PushBack(kHeadersStreamId,
QuicWriteBlockedList::kHighestPriority);

Powered by Google App Engine
This is Rietveld 408576698