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

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

Issue 2272603003: Route key_exchange_group over to DevTools. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix test maybe Created 4 years, 4 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 331c0a443a610698e7d8edc5bcda17cba75e733b..9b6242d7441bbc24a4269bdd9f7fc80ff74487ca 100644
--- a/third_party/WebKit/Source/devtools/front_end/security/SecurityPanel.js
+++ b/third_party/WebKit/Source/devtools/front_end/security/SecurityPanel.js
@@ -800,6 +800,8 @@ WebInspector.SecurityOriginView = function(panel, origin, originState)
connectionSection.appendChild(table.element());
table.addRow("Protocol", originState.securityDetails.protocol);
table.addRow("Key Exchange", originState.securityDetails.keyExchange);
+ if (originState.securityDetails.keyExchangeGroup)
+ table.addRow("Key Exchange Group", originState.securityDetails.keyExchangeGroup);
table.addRow("Cipher Suite", originState.securityDetails.cipher + (originState.securityDetails.mac ? " with " + originState.securityDetails.mac : ""));
// Create the certificate section outside the callback, so that it appears in the right place.

Powered by Google App Engine
This is Rietveld 408576698