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

Unified Diff: net/quic/quic_framer_test.cc

Issue 355573007: Land Recent QUIC Changes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: added NET_EXPORT_PRIVATE for ContainsQuicTag Created 6 years, 6 months 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_framer.cc ('k') | net/quic/quic_headers_stream.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_framer_test.cc
diff --git a/net/quic/quic_framer_test.cc b/net/quic/quic_framer_test.cc
index fd206e18620cc94010c01e43da1b0f818418c66e..bebaf4aeb9af4fcb4efd01575ed5f9d819dfabf4 100644
--- a/net/quic/quic_framer_test.cc
+++ b/net/quic/quic_framer_test.cc
@@ -2936,7 +2936,7 @@ TEST_P(QuicFramerTest, BlockedFrame) {
}
TEST_P(QuicFramerTest, PingFrame) {
- if (version_ <= QUIC_VERSION_17) {
+ if (version_ <= QUIC_VERSION_16) {
return;
}
@@ -4413,7 +4413,7 @@ TEST_P(QuicFramerTest, BuildPingPacket) {
0x07,
};
- if (version_ > QUIC_VERSION_17) {
+ if (version_ >= QUIC_VERSION_18) {
scoped_ptr<QuicPacket> data(BuildDataPacket(header, frames));
ASSERT_TRUE(data != NULL);
« no previous file with comments | « net/quic/quic_framer.cc ('k') | net/quic/quic_headers_stream.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698