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

Unified Diff: third_party/WebKit/Source/devtools/front_end/security/SecurityPanel.js

Issue 2395323002: Roll src/third_party/boringssl/src 0d81373f9..1991af690 (Closed)
Patch Set: rebase, roll further Created 4 years, 2 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
Index: third_party/WebKit/Source/devtools/front_end/security/SecurityPanel.js
diff --git a/third_party/WebKit/Source/devtools/front_end/security/SecurityPanel.js b/third_party/WebKit/Source/devtools/front_end/security/SecurityPanel.js
index b5237803e52709dcd15fb2748416a4a5df6c2a8b..07795673991dc7320f974956ae15d2d768a06dbc 100644
--- a/third_party/WebKit/Source/devtools/front_end/security/SecurityPanel.js
+++ b/third_party/WebKit/Source/devtools/front_end/security/SecurityPanel.js
@@ -865,7 +865,8 @@ WebInspector.SecurityOriginView = function(panel, origin, originState)
var table = new WebInspector.SecurityDetailsTable();
connectionSection.appendChild(table.element());
table.addRow("Protocol", originState.securityDetails.protocol);
- table.addRow("Key Exchange", originState.securityDetails.keyExchange);
+ if (originState.securityDetails.keyExchange)
+ table.addRow("Key Exchange", originState.securityDetails.keyExchange);
if (originState.securityDetails.keyExchangeGroup)
table.addRow("Key Exchange Group", originState.securityDetails.keyExchangeGroup);
table.addRow("Cipher", originState.securityDetails.cipher + (originState.securityDetails.mac ? " with " + originState.securityDetails.mac : ""));

Powered by Google App Engine
This is Rietveld 408576698