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

Unified Diff: net/quic/quic_session.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/quic_reliable_client_stream.cc ('k') | net/quic/quic_session_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_session.cc
diff --git a/net/quic/quic_session.cc b/net/quic/quic_session.cc
index 3505f44e57bc0154346b204de4c4e6d72615f849..809223bb5d7b85f6bb803a7945cdcbf06a0cc0a9 100644
--- a/net/quic/quic_session.cc
+++ b/net/quic/quic_session.cc
@@ -738,10 +738,10 @@ void QuicSession::MarkConnectionLevelWriteBlocked(QuicStreamId id,
#ifndef NDEBUG
ReliableQuicStream* stream = GetStream(id);
if (stream != nullptr) {
- LOG_IF(DFATAL, priority != stream->EffectivePriority())
+ LOG_IF(DFATAL, priority != stream->Priority())
<< ENDPOINT << "Stream " << id
<< "Priorities do not match. Got: " << priority
- << " Expected: " << stream->EffectivePriority();
+ << " Expected: " << stream->Priority();
} else {
LOG(DFATAL) << "Marking unknown stream " << id << " blocked.";
}
« no previous file with comments | « net/quic/quic_reliable_client_stream.cc ('k') | net/quic/quic_session_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698