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 6de8281e6eb5a13c9dfdc0d1073376342a4b162e..153f4eefbae5b004e713dbc8c41af8a3223711cc 100644 |
--- a/third_party/WebKit/Source/core/loader/MixedContentChecker.cpp |
+++ b/third_party/WebKit/Source/core/loader/MixedContentChecker.cpp |
@@ -378,7 +378,7 @@ void MixedContentChecker::handleCertificateError(LocalFrame* frame, const Resour |
// contextTypeFromRequestContext() never returns NotMixedContent (it |
// computes the type of mixed content, given that the content is |
// mixed). |
- DCHECK(contextType != WebMixedContent::ContextType::NotMixedContent); |
+ DCHECK_NE(contextType, WebMixedContent::ContextType::NotMixedContent); |
client->didDisplayContentWithCertificateErrors(response.url()); |
} |
} |