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

Unified Diff: third_party/WebKit/Source/platform/network/ResourceResponse.cpp

Issue 2272603003: Route key_exchange_group over to DevTools. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase again Created 4 years, 3 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/platform/network/ResourceResponse.cpp
diff --git a/third_party/WebKit/Source/platform/network/ResourceResponse.cpp b/third_party/WebKit/Source/platform/network/ResourceResponse.cpp
index ce0f2885f78244e0e77d014bcd81768dcd3a94ab..ef0f9f9fbe437be83c8e7cd09c5e75a5703e4ef8 100644
--- a/third_party/WebKit/Source/platform/network/ResourceResponse.cpp
+++ b/third_party/WebKit/Source/platform/network/ResourceResponse.cpp
@@ -168,6 +168,7 @@ ResourceResponse::ResourceResponse(CrossThreadResourceResponseData* data)
m_securityDetails.protocol = data->m_securityDetails.protocol;
m_securityDetails.cipher = data->m_securityDetails.cipher;
m_securityDetails.keyExchange = data->m_securityDetails.keyExchange;
+ m_securityDetails.keyExchangeGroup = data->m_securityDetails.keyExchangeGroup;
m_securityDetails.mac = data->m_securityDetails.mac;
m_securityDetails.subjectName = data->m_securityDetails.subjectName;
m_securityDetails.sanList = data->m_securityDetails.sanList;
@@ -225,6 +226,7 @@ std::unique_ptr<CrossThreadResourceResponseData> ResourceResponse::copyData() co
data->m_securityDetails.protocol = m_securityDetails.protocol.isolatedCopy();
data->m_securityDetails.cipher = m_securityDetails.cipher.isolatedCopy();
data->m_securityDetails.keyExchange = m_securityDetails.keyExchange.isolatedCopy();
+ data->m_securityDetails.keyExchangeGroup = m_securityDetails.keyExchangeGroup.isolatedCopy();
data->m_securityDetails.mac = m_securityDetails.mac.isolatedCopy();
data->m_securityDetails.subjectName = m_securityDetails.subjectName.isolatedCopy();
data->m_securityDetails.sanList = isolatedCopy(m_securityDetails.sanList);
@@ -388,10 +390,11 @@ void ResourceResponse::updateHeaderParsedState(const AtomicString& name)
m_haveParsedLastModifiedHeader = false;
}
-void ResourceResponse::setSecurityDetails(const String& protocol, const String& keyExchange, const String& cipher, const String& mac, const String& subjectName, const Vector<String>& sanList, const String& issuer, time_t validFrom, time_t validTo, const Vector<AtomicString>& certificate, const SignedCertificateTimestampList& sctList)
+void ResourceResponse::setSecurityDetails(const String& protocol, const String& keyExchange, const String& keyExchangeGroup, const String& cipher, const String& mac, const String& subjectName, const Vector<String>& sanList, const String& issuer, time_t validFrom, time_t validTo, const Vector<AtomicString>& certificate, const SignedCertificateTimestampList& sctList)
{
m_securityDetails.protocol = protocol;
m_securityDetails.keyExchange = keyExchange;
+ m_securityDetails.keyExchangeGroup = keyExchangeGroup;
m_securityDetails.cipher = cipher;
m_securityDetails.mac = mac;
m_securityDetails.subjectName = subjectName;
« no previous file with comments | « third_party/WebKit/Source/platform/network/ResourceResponse.h ('k') | third_party/WebKit/public/platform/WebURLResponse.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698