| Index: third_party/WebKit/Source/platform/exported/WebURLResponse.cpp
|
| diff --git a/third_party/WebKit/Source/platform/exported/WebURLResponse.cpp b/third_party/WebKit/Source/platform/exported/WebURLResponse.cpp
|
| index d00ddd259fa4b0f1d6dc84b040333b64cb993578..e89a8848cad0e70f3ca237c2758b2812cdb4a890 100644
|
| --- a/third_party/WebKit/Source/platform/exported/WebURLResponse.cpp
|
| +++ b/third_party/WebKit/Source/platform/exported/WebURLResponse.cpp
|
| @@ -321,9 +321,9 @@ void WebURLResponse::setSecurityStyle(SecurityStyle securityStyle)
|
| m_private->m_resourceResponse->setSecurityStyle(static_cast<ResourceResponse::SecurityStyle>(securityStyle));
|
| }
|
|
|
| -void WebURLResponse::setSecurityDetails(const WebString& protocol, const WebString& keyExchange, const WebString& cipher, const WebString& mac, int certId)
|
| +void WebURLResponse::setSecurityDetails(const WebString& protocol, const WebString& keyExchange, const WebString& cipher, const WebString& mac, int certId, size_t numUnknownScts, size_t numInvalidScts, size_t numValidScts)
|
| {
|
| - m_private->m_resourceResponse->setSecurityDetails(protocol, keyExchange, cipher, mac, certId);
|
| + m_private->m_resourceResponse->setSecurityDetails(protocol, keyExchange, cipher, mac, certId, numUnknownScts, numInvalidScts, numValidScts);
|
| }
|
|
|
| ResourceResponse& WebURLResponse::toMutableResourceResponse()
|
|
|