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

Unified Diff: net/quic/quic_crypto_stream.cc

Issue 1470713003: Landing Recent QUIC changes until and including Mon Nov 16 14:15:48 2015 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Adding NET_EXPORT_PRIVATE to DelegateInterface. 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
Index: net/quic/quic_crypto_stream.cc
diff --git a/net/quic/quic_crypto_stream.cc b/net/quic/quic_crypto_stream.cc
index 077876084a2ffeec242553167d430eaa8450656b..fdee37302af478edb80d84d70390e2b3d7bb2c85 100644
--- a/net/quic/quic_crypto_stream.cc
+++ b/net/quic/quic_crypto_stream.cc
@@ -15,6 +15,7 @@
using std::string;
using base::StringPiece;
+using net::SpdyPriority;
namespace net {
@@ -58,8 +59,8 @@ void QuicCryptoStream::OnDataAvailable() {
}
}
-QuicPriority QuicCryptoStream::EffectivePriority() const {
- return QuicUtils::HighestPriority();
+SpdyPriority QuicCryptoStream::Priority() const {
+ return net::kHighestPriority; // The smallest priority is also the highest
}
void QuicCryptoStream::SendHandshakeMessage(

Powered by Google App Engine
This is Rietveld 408576698