| 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 37de0b6a8bd39e31b13911e2454bd8adbc1913eb..a9b8257bd6a7b323314cd2d16590c309255a0b2c 100644
|
| --- a/third_party/WebKit/Source/platform/network/ResourceResponse.cpp
|
| +++ b/third_party/WebKit/Source/platform/network/ResourceResponse.cpp
|
| @@ -48,6 +48,7 @@ ResourceResponse::ResourceResponse()
|
| , m_date(0.0)
|
| , m_expires(0.0)
|
| , m_lastModified(0.0)
|
| + , m_hasCertificateErrors(false)
|
| , m_securityStyle(SecurityStyleUnknown)
|
| , m_httpVersion(HTTPVersionUnknown)
|
| , m_appCacheID(0)
|
| @@ -84,6 +85,7 @@ ResourceResponse::ResourceResponse(const KURL& url, const AtomicString& mimeType
|
| , m_date(0.0)
|
| , m_expires(0.0)
|
| , m_lastModified(0.0)
|
| + , m_hasCertificateErrors(false)
|
| , m_securityStyle(SecurityStyleUnknown)
|
| , m_httpVersion(HTTPVersionUnknown)
|
| , m_appCacheID(0)
|
| @@ -116,6 +118,7 @@ PassOwnPtr<ResourceResponse> ResourceResponse::adopt(PassOwnPtr<CrossThreadResou
|
| response->setLastModifiedDate(data->m_lastModifiedDate);
|
| response->setResourceLoadTiming(data->m_resourceLoadTiming.release());
|
| response->m_securityInfo = data->m_securityInfo;
|
| + response->m_hasCertificateErrors = data->m_hasCertificateErrors;
|
| response->m_securityStyle = data->m_securityStyle;
|
| response->m_securityDetails.protocol = data->m_securityDetails.protocol;
|
| response->m_securityDetails.cipher = data->m_securityDetails.cipher;
|
| @@ -161,6 +164,7 @@ PassOwnPtr<CrossThreadResourceResponseData> ResourceResponse::copyData() const
|
| if (m_resourceLoadTiming)
|
| data->m_resourceLoadTiming = m_resourceLoadTiming->deepCopy();
|
| data->m_securityInfo = CString(m_securityInfo.data(), m_securityInfo.length());
|
| + data->m_hasCertificateErrors = m_hasCertificateErrors;
|
| data->m_securityStyle = m_securityStyle;
|
| data->m_securityDetails.protocol = m_securityDetails.protocol.isolatedCopy();
|
| data->m_securityDetails.cipher = m_securityDetails.cipher.isolatedCopy();
|
|
|