Internal change

PiperOrigin-RevId: 549971534
diff --git a/quiche/quic/core/http/quic_spdy_client_session.cc b/quiche/quic/core/http/quic_spdy_client_session.cc
index a30e10c..52c4d04 100644
--- a/quiche/quic/core/http/quic_spdy_client_session.cc
+++ b/quiche/quic/core/http/quic_spdy_client_session.cc
@@ -117,6 +117,10 @@
   return crypto_stream_->num_sent_client_hellos();
 }
 
+bool QuicSpdyClientSession::ResumptionAttempted() const {
+  return crypto_stream_->ResumptionAttempted();
+}
+
 bool QuicSpdyClientSession::IsResumption() const {
   return crypto_stream_->IsResumption();
 }
diff --git a/quiche/quic/core/http/quic_spdy_client_session.h b/quiche/quic/core/http/quic_spdy_client_session.h
index 083baba..27cfb76 100644
--- a/quiche/quic/core/http/quic_spdy_client_session.h
+++ b/quiche/quic/core/http/quic_spdy_client_session.h
@@ -67,6 +67,10 @@
   // than the number of round-trips needed for the handshake.
   int GetNumSentClientHellos() const;
 
+  // Return true if the client attempted a TLS resumption.
+  // Always return false for QUIC Crypto.
+  bool ResumptionAttempted() const;
+
   // Return true if the handshake performed is a TLS resumption.
   // Always return false for QUIC Crypto.
   bool IsResumption() const;