Remove unused SSL_CTX* argument from TlsHandshaker c'tor

gfe-relnote: n/a (refactor dead argument)
PiperOrigin-RevId: 290311621
Change-Id: I7db1bd8ff74784fe9f2767ba299038f54099c20b
diff --git a/quic/core/tls_client_handshaker.cc b/quic/core/tls_client_handshaker.cc
index 53ea536..2f8ba67 100644
--- a/quic/core/tls_client_handshaker.cc
+++ b/quic/core/tls_client_handshaker.cc
@@ -50,7 +50,7 @@
     std::unique_ptr<ProofVerifyContext> verify_context,
     QuicCryptoClientConfig* crypto_config,
     QuicCryptoClientStream::ProofHandler* proof_handler)
-    : TlsHandshaker(stream, session, crypto_config->ssl_ctx()),
+    : TlsHandshaker(stream, session),
       server_id_(server_id),
       proof_verifier_(crypto_config->proof_verifier()),
       verify_context_(std::move(verify_context)),