Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(947)

Unified Diff: net/socket/ssl_client_socket_impl.cc

Issue 2734373002: Roll src/third_party/boringssl/src d6c22ee93..d04ca9535 (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « DEPS ('k') | testing/variations/fieldtrial_testing_config.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/socket/ssl_client_socket_impl.cc
diff --git a/net/socket/ssl_client_socket_impl.cc b/net/socket/ssl_client_socket_impl.cc
index 5cfb59643cbc9912178cc78f3cecd1cae2a286e8..518facd9679d1afaa53b439948c7fa545faece18 100644
--- a/net/socket/ssl_client_socket_impl.cc
+++ b/net/socket/ssl_client_socket_impl.cc
@@ -234,9 +234,6 @@ bool AreLegacyECDSACiphersEnabled() {
}
#endif
-const base::Feature kShortRecordHeaderFeature{
- "SSLShortRecordHeader", base::FEATURE_DISABLED_BY_DEFAULT};
-
scoped_refptr<X509Certificate> OSChainFromOpenSSL(STACK_OF(X509) *
openssl_chain) {
if (sk_X509_num(openssl_chain) == 0) {
@@ -332,10 +329,6 @@ class SSLClientSocketImpl::SSLContext {
// Deduplicate all certificates minted from the SSL_CTX in memory.
SSL_CTX_set0_buffer_pool(ssl_ctx_.get(), x509_util::GetBufferPool());
- if (base::FeatureList::IsEnabled(kShortRecordHeaderFeature)) {
- SSL_CTX_set_short_header_enabled(ssl_ctx_.get(), 1);
- }
-
if (!SSL_CTX_add_client_custom_ext(ssl_ctx_.get(), kTbExtNum,
&TokenBindingAddCallback,
&TokenBindingFreeCallback, nullptr,
« no previous file with comments | « DEPS ('k') | testing/variations/fieldtrial_testing_config.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698