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

Unified Diff: net/quic/chromium/quic_stream_factory_test.cc

Issue 2422343002: Remove now useless QUIC method AdjustErrorForVersion() which has been a no-op for some time. (Closed)
Patch Set: Created 4 years, 2 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/chromium/quic_http_stream_test.cc ('k') | net/quic/core/quic_connection.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/chromium/quic_stream_factory_test.cc
diff --git a/net/quic/chromium/quic_stream_factory_test.cc b/net/quic/chromium/quic_stream_factory_test.cc
index e7c05d0c09b60b6fa065a908e5682de9b6a94c38..2be7960e48a182aec99401d40fad985c454cb0fc 100644
--- a/net/quic/chromium/quic_stream_factory_test.cc
+++ b/net/quic/chromium/quic_stream_factory_test.cc
@@ -390,9 +390,8 @@ class QuicStreamFactoryTestBase {
std::unique_ptr<QuicEncryptedPacket> ConstructClientRstPacket() {
QuicStreamId stream_id = kClientDataStreamId1;
- return client_maker_.MakeRstPacket(
- 1, true, stream_id,
- AdjustErrorForVersion(QUIC_RST_ACKNOWLEDGEMENT, version_));
+ return client_maker_.MakeRstPacket(1, true, stream_id,
+ QUIC_RST_ACKNOWLEDGEMENT);
}
static ProofVerifyDetailsChromium DefaultProofVerifyDetails() {
« no previous file with comments | « net/quic/chromium/quic_http_stream_test.cc ('k') | net/quic/core/quic_connection.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698