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

Unified Diff: net/quic/reliable_quic_stream.cc

Issue 1471573002: Replacing EffectivePriority with Priority for QUIC. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@107595145
Patch Set: Created 5 years, 1 month 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/reliable_quic_stream.h ('k') | net/quic/reliable_quic_stream_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/reliable_quic_stream.cc
diff --git a/net/quic/reliable_quic_stream.cc b/net/quic/reliable_quic_stream.cc
index 89e865ad6ad29f297b95d4648c070ccab8c72edf..8389c0fb806e60b68311ede38c84cf5f768ddc2d 100644
--- a/net/quic/reliable_quic_stream.cc
+++ b/net/quic/reliable_quic_stream.cc
@@ -277,7 +277,7 @@ void ReliableQuicStream::MaybeSendBlocked() {
// WINDOW_UPDATE arrives.
if (connection_flow_controller_->IsBlocked() &&
!flow_controller_.IsBlocked()) {
- session_->MarkConnectionLevelWriteBlocked(id(), EffectivePriority());
+ session_->MarkConnectionLevelWriteBlocked(id(), Priority());
}
}
@@ -342,10 +342,10 @@ QuicConsumedData ReliableQuicStream::WritevData(
}
CloseWriteSide();
} else if (fin && !consumed_data.fin_consumed) {
- session_->MarkConnectionLevelWriteBlocked(id(), EffectivePriority());
+ session_->MarkConnectionLevelWriteBlocked(id(), Priority());
}
} else {
- session_->MarkConnectionLevelWriteBlocked(id(), EffectivePriority());
+ session_->MarkConnectionLevelWriteBlocked(id(), Priority());
}
return consumed_data;
}
« no previous file with comments | « net/quic/reliable_quic_stream.h ('k') | net/quic/reliable_quic_stream_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698