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

Unified Diff: third_party/WebKit/Source/core/inspector/InspectorNetworkAgent.cpp

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/core/inspector/InspectorNetworkAgent.cpp
diff --git a/third_party/WebKit/Source/core/inspector/InspectorNetworkAgent.cpp b/third_party/WebKit/Source/core/inspector/InspectorNetworkAgent.cpp
index 7da58c0f2c09343933a9d7f0a8d50b3d5843ccc7..5c5b866a686abfc7529bd766722d4131ddc5d005 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorNetworkAgent.cpp
+++ b/third_party/WebKit/Source/core/inspector/InspectorNetworkAgent.cpp
@@ -442,6 +442,8 @@ static std::unique_ptr<protocol::Network::Response> buildObjectForResourceRespon
.setCertificateId(responseSecurityDetails->certID)
.setSignedCertificateTimestampList(std::move(signedCertificateTimestampList))
.build();
+ if (responseSecurityDetails->keyExchangeGroup.length() > 0)
+ securityDetails->setKeyExchangeGroup(responseSecurityDetails->keyExchangeGroup);
if (responseSecurityDetails->mac.length() > 0)
securityDetails->setMac(responseSecurityDetails->mac);

Powered by Google App Engine
This is Rietveld 408576698