Make transport_params in SessionCache a const reference, because it should always be present.

gfe-relnote: unused code, not protected.
PiperOrigin-RevId: 307943004
Change-Id: I692867a8cfc624f09a607cba297f9df7158ff1a9
diff --git a/quic/core/crypto/quic_crypto_client_config.h b/quic/core/crypto/quic_crypto_client_config.h
index b4675de..b28a31a 100644
--- a/quic/core/crypto/quic_crypto_client_config.h
+++ b/quic/core/crypto/quic_crypto_client_config.h
@@ -66,12 +66,10 @@
   // copied. Multiple sessions might need to be inserted for a connection.
   // SessionCache implementations should support storing
   // multiple entries per server ID.
-  // TODO(renjietang): Once params and application_states are wired up, change
-  // the argument type to const&.
   virtual void Insert(const QuicServerId& server_id,
                       bssl::UniquePtr<SSL_SESSION> session,
-                      TransportParameters* params,
-                      ApplicationState* application_states) = 0;
+                      const TransportParameters& params,
+                      const ApplicationState* application_state) = 0;
 
   // Lookup is called once at the beginning of each TLS handshake to potentially
   // provide the saved state both for the TLS handshake and for sending 0-RTT
diff --git a/quic/core/tls_client_handshaker.cc b/quic/core/tls_client_handshaker.cc
index f16fdd5..3770ebd 100644
--- a/quic/core/tls_client_handshaker.cc
+++ b/quic/core/tls_client_handshaker.cc
@@ -520,7 +520,7 @@
     return;
   }
   session_cache_->Insert(server_id_, std::move(session),
-                         received_transport_params_.get(),
+                         *received_transport_params_,
                          received_application_state_.get());
 }
 
@@ -544,11 +544,11 @@
     if (cached_tls_sessions_[1] != nullptr) {
       // Insert the older session first.
       session_cache_->Insert(server_id_, std::move(cached_tls_sessions_[1]),
-                             received_transport_params_.get(),
+                             *received_transport_params_,
                              received_application_state_.get());
     }
     session_cache_->Insert(server_id_, std::move(cached_tls_sessions_[0]),
-                           received_transport_params_.get(),
+                           *received_transport_params_,
                            received_application_state_.get());
   }
 }