| 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..3bfcff81ac29ded960b979eb6aedb40442a79ccd 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, bool certIsValidEV, int numUnknownScts, int numInvalidScts, int numValidScts)
|
| {
|
| - m_private->m_resourceResponse->setSecurityDetails(protocol, keyExchange, cipher, mac, certId);
|
| + m_private->m_resourceResponse->setSecurityDetails(protocol, keyExchange, cipher, mac, certId, certIsValidEV, numUnknownScts, numInvalidScts, numValidScts);
|
| }
|
|
|
| ResourceResponse& WebURLResponse::toMutableResourceResponse()
|
|
|