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

Unified Diff: net/quic/quic_write_blocked_list.cc

Issue 1134603005: Remove WriteBlockedList::use_stream_to_priority. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
« no previous file with comments | « net/quic/quic_write_blocked_list.h ('k') | net/quic/quic_write_blocked_list_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_write_blocked_list.cc
diff --git a/net/quic/quic_write_blocked_list.cc b/net/quic/quic_write_blocked_list.cc
index 36854e55ec0568de55dd4af32962b296527d9ec6..e763d172f26a2704c4d8db033d1f28dfb7254eb2 100644
--- a/net/quic/quic_write_blocked_list.cc
+++ b/net/quic/quic_write_blocked_list.cc
@@ -11,10 +11,8 @@ const QuicPriority QuicWriteBlockedList::kHighestPriority =
const QuicPriority QuicWriteBlockedList::kLowestPriority =
static_cast<QuicPriority>(net::kLowestPriority);
-QuicWriteBlockedList::QuicWriteBlockedList(bool avoid_duplicate_streams)
- : base_write_blocked_list_(avoid_duplicate_streams),
- crypto_stream_blocked_(false),
- headers_stream_blocked_(false) {
+QuicWriteBlockedList::QuicWriteBlockedList()
+ : crypto_stream_blocked_(false), headers_stream_blocked_(false) {
}
QuicWriteBlockedList::~QuicWriteBlockedList() {}
« no previous file with comments | « net/quic/quic_write_blocked_list.h ('k') | net/quic/quic_write_blocked_list_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698