| 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();
|
|
|