| 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 e7c86ab6dafa8964e344c2fdf83ec1b7fe40f82e..07a1f26e6c670ceb59ad85387f3a6a1f7753d7aa 100644
|
| --- a/third_party/WebKit/Source/core/loader/MixedContentChecker.cpp
|
| +++ b/third_party/WebKit/Source/core/loader/MixedContentChecker.cpp
|
| @@ -263,10 +263,11 @@ bool MixedContentChecker::shouldBlockFetch(
|
|
|
| switch (contextType) {
|
| case WebMixedContent::ContextType::OptionallyBlockable:
|
| - client->passiveInsecureContentFound(url);
|
| allowed = !strictMode;
|
| - if (allowed)
|
| + if (allowed) {
|
| + client->passiveInsecureContentFound(url);
|
| client->didDisplayInsecureContent();
|
| + }
|
| break;
|
|
|
| case WebMixedContent::ContextType::Blockable: {
|
|
|