| Index: net/quic/quic_crypto_stream.cc
|
| diff --git a/net/quic/quic_crypto_stream.cc b/net/quic/quic_crypto_stream.cc
|
| index 104b0f392ad5ae89fedb69e30dc599e14fe03a21..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::Priority() const {
|
| - return QuicUtils::HighestPriority();
|
| +SpdyPriority QuicCryptoStream::Priority() const {
|
| + return net::kHighestPriority; // The smallest priority is also the highest
|
| }
|
|
|
| void QuicCryptoStream::SendHandshakeMessage(
|
|
|