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

Unified Diff: net/quic/quic_crypto_client_stream.cc

Issue 1410013010: Remove unused input argument. No functional change expected. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@106446616
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_crypto_client_stream.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_crypto_client_stream.cc
diff --git a/net/quic/quic_crypto_client_stream.cc b/net/quic/quic_crypto_client_stream.cc
index 4da611d9f4141765c45e733d2130c92dba27c00b..cdd29515d12ebc407d684d3d03fd675b4ff5cf39 100644
--- a/net/quic/quic_crypto_client_stream.cc
+++ b/net/quic/quic_crypto_client_stream.cc
@@ -192,7 +192,7 @@ void QuicCryptoClientStream::DoHandshakeLoop(
DoInitialize(cached);
break;
case STATE_SEND_CHLO:
- DoSendCHLO(in, cached);
+ DoSendCHLO(cached);
return; // return waiting to hear from server.
case STATE_RECV_REJ:
DoReceiveREJ(in, cached);
@@ -242,7 +242,6 @@ void QuicCryptoClientStream::DoInitialize(
}
void QuicCryptoClientStream::DoSendCHLO(
- const CryptoHandshakeMessage* in,
QuicCryptoClientConfig::CachedState* cached) {
if (stateless_reject_received_) {
// If we've gotten to this point, we've sent at least one hello
« no previous file with comments | « net/quic/quic_crypto_client_stream.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698