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

Unified Diff: net/quic/quic_session_test.cc

Issue 1468773002: Changing from QuicPriority to SpdyPriority. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@107610692
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_session.cc ('k') | net/quic/quic_spdy_session.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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());
« no previous file with comments | « net/quic/quic_session.cc ('k') | net/quic/quic_spdy_session.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698