| Index: chrome/browser/ui/website_settings/website_settings.cc
|
| diff --git a/chrome/browser/ui/website_settings/website_settings.cc b/chrome/browser/ui/website_settings/website_settings.cc
|
| index c9dae32d9c4bf20c068e3461332cc62e0b5aba7c..79316ed1b039f40a00541728ca7f6001305742c7 100644
|
| --- a/chrome/browser/ui/website_settings/website_settings.cc
|
| +++ b/chrome/browser/ui/website_settings/website_settings.cc
|
| @@ -617,9 +617,6 @@ void WebsiteSettings::Init(const GURL& url,
|
| IDS_PAGE_INFO_SECURITY_TAB_SSL_VERSION,
|
| ASCIIToUTF16(ssl_version_str));
|
|
|
| - bool no_renegotiation =
|
| - (security_info.connection_status &
|
| - net::SSL_CONNECTION_NO_RENEGOTIATION_EXTENSION) != 0;
|
| const char *key_exchange, *cipher, *mac;
|
| bool is_aead, is_tls13;
|
| net::SSLCipherSuiteToStrings(&key_exchange, &cipher, &mac, &is_aead,
|
| @@ -650,12 +647,6 @@ void WebsiteSettings::Init(const GURL& url,
|
| SITE_CONNECTION_STATUS_INSECURE_PASSIVE_SUBRESOURCE) {
|
| site_connection_status_ = SITE_CONNECTION_STATUS_ENCRYPTED_ERROR;
|
| }
|
| -
|
| - if (no_renegotiation) {
|
| - site_connection_details_ += ASCIIToUTF16("\n\n");
|
| - site_connection_details_ += l10n_util::GetStringUTF16(
|
| - IDS_PAGE_INFO_SECURITY_TAB_RENEGOTIATION_MESSAGE);
|
| - }
|
| }
|
|
|
| // Check if a user decision has been made to allow or deny certificates with
|
|
|