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

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

Issue 2315443003: Stop sending serialized SSLStatus to the renderer. (Closed)
Patch Set: self review fix and merge fix 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 19abb3f9a6f4651232ccac834fa47e64d0baed4a..ce0f2885f78244e0e77d014bcd81768dcd3a94ab 100644
--- a/third_party/WebKit/Source/platform/network/ResourceResponse.cpp
+++ b/third_party/WebKit/Source/platform/network/ResourceResponse.cpp
@@ -163,7 +163,6 @@ ResourceResponse::ResourceResponse(CrossThreadResourceResponseData* data)
m_httpHeaderFields.adopt(std::move(data->m_httpHeaders));
setLastModifiedDate(data->m_lastModifiedDate);
setResourceLoadTiming(data->m_resourceLoadTiming.release());
- m_securityInfo = data->m_securityInfo;
m_hasMajorCertificateErrors = data->m_hasMajorCertificateErrors;
m_securityStyle = data->m_securityStyle;
m_securityDetails.protocol = data->m_securityDetails.protocol;
@@ -221,7 +220,6 @@ std::unique_ptr<CrossThreadResourceResponseData> ResourceResponse::copyData() co
data->m_lastModifiedDate = lastModifiedDate();
if (m_resourceLoadTiming)
data->m_resourceLoadTiming = m_resourceLoadTiming->deepCopy();
- data->m_securityInfo = CString(m_securityInfo.data(), m_securityInfo.length());
data->m_hasMajorCertificateErrors = m_hasMajorCertificateErrors;
data->m_securityStyle = m_securityStyle;
data->m_securityDetails.protocol = m_securityDetails.protocol.isolatedCopy();
« no previous file with comments | « third_party/WebKit/Source/platform/network/ResourceResponse.h ('k') | third_party/WebKit/Source/web/FrameLoaderClientImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698