| Index: net/quic/quic_session_test.cc
|
| diff --git a/net/quic/quic_session_test.cc b/net/quic/quic_session_test.cc
|
| index 74b5a03435a82a4da0845dd57abb4044a2508b62..1fe62a9d7dda365aace08caa5dd1d6775eeee438 100644
|
| --- a/net/quic/quic_session_test.cc
|
| +++ b/net/quic/quic_session_test.cc
|
| @@ -36,6 +36,7 @@ using std::set;
|
| using std::string;
|
| using std::vector;
|
| using testing::CreateFunctor;
|
| +using net::SpdyPriority;
|
| using testing::InSequence;
|
| using testing::Invoke;
|
| using testing::Return;
|
| @@ -46,8 +47,8 @@ namespace net {
|
| namespace test {
|
| namespace {
|
|
|
| -const QuicPriority kHighestPriority = 0;
|
| -const QuicPriority kSomeMiddlePriority = 3;
|
| +const SpdyPriority kHighestPriority = 0;
|
| +const SpdyPriority kSomeMiddlePriority = 3;
|
|
|
| class TestCryptoStream : public QuicCryptoStream {
|
| public:
|
| @@ -386,7 +387,7 @@ TEST_P(QuicSessionTestServer, DebugDFatalIfMarkingClosedStreamWriteBlocked) {
|
|
|
| TEST_P(QuicSessionTestServer,
|
| DebugDFatalIfMarkWriteBlockedCalledWithWrongPriority) {
|
| - const QuicPriority kDifferentPriority = 0;
|
| + const SpdyPriority kDifferentPriority = 0;
|
|
|
| TestStream* stream2 = session_.CreateOutgoingDynamicStream();
|
| EXPECT_NE(kDifferentPriority, stream2->Priority());
|
|
|