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

Unified Diff: ios/chrome/browser/ui/omnibox/page_info_model.cc

Issue 2627143003: Remove message about TLS renegotiation info extension. (Closed)
Patch Set: Created 3 years, 11 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 | « components/pageinfo_strings.grdp ('k') | net/socket/ssl_client_socket_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/chrome/browser/ui/omnibox/page_info_model.cc
diff --git a/ios/chrome/browser/ui/omnibox/page_info_model.cc b/ios/chrome/browser/ui/omnibox/page_info_model.cc
index 5967c3c789d61ba714f8d805d2d090f8eba87319..5869e6b0271e200fbba2e2b8390e2498580e4d7d 100644
--- a/ios/chrome/browser/ui/omnibox/page_info_model.cc
+++ b/ios/chrome/browser/ui/omnibox/page_info_model.cc
@@ -237,9 +237,6 @@ PageInfoModel::PageInfoModel(ios::ChromeBrowserState* browser_state,
l10n_util::GetStringFUTF16(IDS_PAGE_INFO_SECURITY_TAB_SSL_VERSION,
base::ASCIIToUTF16(ssl_version_str));
- bool no_renegotiation =
- (ssl.connection_status &
- net::SSL_CONNECTION_NO_RENEGOTIATION_EXTENSION) != 0;
const char *key_exchange, *cipher, *mac;
bool is_aead;
bool is_tls13;
@@ -257,12 +254,6 @@ PageInfoModel::PageInfoModel(ios::ChromeBrowserState* browser_state,
base::ASCIIToUTF16(cipher), base::ASCIIToUTF16(mac),
base::ASCIIToUTF16(key_exchange));
}
-
- if (no_renegotiation) {
- description += base::ASCIIToUTF16("\n\n");
- description += l10n_util::GetStringUTF16(
- IDS_PAGE_INFO_SECURITY_TAB_RENEGOTIATION_MESSAGE);
- }
}
if (!description.empty()) {
« no previous file with comments | « components/pageinfo_strings.grdp ('k') | net/socket/ssl_client_socket_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698