Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1239)

Unified Diff: content/public/browser/security_style_explanations.cc

Issue 2286553002: DevTools security panel: explain subresources with cert errors separately (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: try to make comment more clear Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/public/browser/security_style_explanations.cc
diff --git a/content/public/browser/security_style_explanations.cc b/content/public/browser/security_style_explanations.cc
index b80631ee9263f41ff4ab7ca888ce4a637d1ee507..68e6769567af81ee4221b9741705d7042b5903b6 100644
--- a/content/public/browser/security_style_explanations.cc
+++ b/content/public/browser/security_style_explanations.cc
@@ -7,8 +7,10 @@
namespace content {
SecurityStyleExplanations::SecurityStyleExplanations()
- : ran_insecure_content(false),
- displayed_insecure_content(false),
+ : ran_mixed_content(false),
+ displayed_mixed_content(false),
+ ran_content_with_cert_errors(false),
+ displayed_content_with_cert_errors(false),
ran_insecure_content_style(SECURITY_STYLE_UNKNOWN),
displayed_insecure_content_style(SECURITY_STYLE_UNKNOWN),
scheme_is_cryptographic(false),

Powered by Google App Engine
This is Rietveld 408576698