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..1b46299fa7ce7f7c464ed899fee268b553f18f51 100644 |
--- a/third_party/WebKit/Source/core/loader/MixedContentChecker.cpp |
+++ b/third_party/WebKit/Source/core/loader/MixedContentChecker.cpp |
@@ -217,7 +217,8 @@ bool MixedContentChecker::shouldBlockFetch(LocalFrame* frame, WebURLRequest::Req |
switch (contextType) { |
case WebMixedContent::ContextType::OptionallyBlockable: |
- allowed = !strictMode && client->allowDisplayingInsecureContent(settings && settings->allowDisplayOfInsecureContent(), url); |
+ client->passiveInsecureContentFound(url); |
+ allowed = !strictMode; |
if (allowed) |
client->didDisplayInsecureContent(); |
break; |