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

Unified Diff: net/tools/quic/chlo_extractor_test.cc

Issue 2681793002: Landing Recent QUIC changes until 5:30 PM, Feb 3, 2017 UTC-5 (Closed)
Patch Set: sync and rebase Created 3 years, 10 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/test_tools/quic_test_utils.cc ('k') | net/tools/quic/end_to_end_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/tools/quic/chlo_extractor_test.cc
diff --git a/net/tools/quic/chlo_extractor_test.cc b/net/tools/quic/chlo_extractor_test.cc
index bdce1b81c3a7b030f29d956a698abba733d4c890..299e05d9b0c5de19affbd41b5d895508556d8768 100644
--- a/net/tools/quic/chlo_extractor_test.cc
+++ b/net/tools/quic/chlo_extractor_test.cc
@@ -63,9 +63,9 @@ class ChloExtractorTest : public ::testing::Test {
std::unique_ptr<QuicPacket> packet(
BuildUnsizedDataPacket(&framer, header_, frames));
EXPECT_TRUE(packet != nullptr);
- size_t encrypted_length = framer.EncryptPayload(
- ENCRYPTION_NONE, header_.path_id, header_.packet_number, *packet,
- buffer_, arraysize(buffer_));
+ size_t encrypted_length =
+ framer.EncryptPayload(ENCRYPTION_NONE, header_.packet_number, *packet,
+ buffer_, arraysize(buffer_));
ASSERT_NE(0u, encrypted_length);
packet_.reset(new QuicEncryptedPacket(buffer_, encrypted_length));
EXPECT_TRUE(packet_ != nullptr);
« no previous file with comments | « net/quic/test_tools/quic_test_utils.cc ('k') | net/tools/quic/end_to_end_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698