Index: third_party/WebKit/Source/core/loader/MixedContentChecker.cpp |
diff --git a/third_party/WebKit/Source/core/loader/MixedContentChecker.cpp b/third_party/WebKit/Source/core/loader/MixedContentChecker.cpp |
index 639a7fd273737b48434ac3b0496d3774e76f56d4..12e30d68b3cbd0eb83cce14ec3c2fa92d89493ad 100644 |
--- a/third_party/WebKit/Source/core/loader/MixedContentChecker.cpp |
+++ b/third_party/WebKit/Source/core/loader/MixedContentChecker.cpp |
@@ -372,13 +372,13 @@ void MixedContentChecker::handleCertificateError(LocalFrame* frame, const Resour |
bool strictMixedContentCheckingForPlugin = effectiveFrame->settings() && effectiveFrame->settings()->strictMixedContentCheckingForPlugin(); |
WebMixedContent::ContextType contextType = WebMixedContent::contextTypeFromRequestContext(requestContext, strictMixedContentCheckingForPlugin); |
if (contextType == WebMixedContent::ContextType::Blockable) { |
- client->didRunContentWithCertificateErrors(response.url(), response.getSecurityInfo()); |
+ client->didRunContentWithCertificateErrors(response.url()); |
} else { |
// contextTypeFromRequestContext() never returns NotMixedContent (it |
// computes the type of mixed content, given that the content is |
// mixed). |
DCHECK(contextType != WebMixedContent::ContextType::NotMixedContent); |
- client->didDisplayContentWithCertificateErrors(response.url(), response.getSecurityInfo()); |
+ client->didDisplayContentWithCertificateErrors(response.url()); |
} |
} |