gfe-relnote: No behavior change. Remove TODO from quic::TlsConnection.

PiperOrigin-RevId: 304507911
Change-Id: I814a08f2f1e15d77002af7e7898b718590d6e6b6
diff --git a/quic/core/crypto/tls_connection.cc b/quic/core/crypto/tls_connection.cc
index b0d2147..75d28c5 100644
--- a/quic/core/crypto/tls_connection.cc
+++ b/quic/core/crypto/tls_connection.cc
@@ -108,18 +108,10 @@
       ssl, SslIndexSingleton::GetInstance()->ssl_ex_data_index_connection()));
 }
 
-// TODO(nharper): Once
-// https://boringssl-review.googlesource.com/c/boringssl/+/40127 lands and is
-// rolled into google3, remove the BORINGSSL_API_VERSION check.
 const SSL_QUIC_METHOD TlsConnection::kSslQuicMethod{
-#if BORINGSSL_API_VERSION < 10
-  TlsConnection::SetEncryptionSecretCallback,
-#else
-  TlsConnection::SetReadSecretCallback, TlsConnection::SetWriteSecretCallback,
-#endif
-      TlsConnection::WriteMessageCallback, TlsConnection::FlushFlightCallback,
-      TlsConnection::SendAlertCallback
-};
+    TlsConnection::SetReadSecretCallback, TlsConnection::SetWriteSecretCallback,
+    TlsConnection::WriteMessageCallback, TlsConnection::FlushFlightCallback,
+    TlsConnection::SendAlertCallback};
 
 // static
 int TlsConnection::SetEncryptionSecretCallback(