Remove virtual keyword for unoverridden QuicSession::IsCryptoHandshakeConfirmed().
gfe-relnote: no behavior change. Not protected.
PiperOrigin-RevId: 274701262
Change-Id: I72106fd18dec47dc5cd5384a776bafdc5280d4dd
diff --git a/quic/core/quic_session.h b/quic/core/quic_session.h
index 59b3ee2..9a2f3aa 100644
--- a/quic/core/quic_session.h
+++ b/quic/core/quic_session.h
@@ -234,7 +234,7 @@
// For a client, returns true if the server has confirmed our handshake. For
// a server, returns true if a full, valid client hello has been received.
- virtual bool IsCryptoHandshakeConfirmed() const;
+ bool IsCryptoHandshakeConfirmed() const;
// Called by the QuicCryptoStream when a new QuicConfig has been negotiated.
virtual void OnConfigNegotiated();