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

Unified Diff: content/browser/ssl/ssl_manager.h

Issue 2226363002: Track subresources with cert errors separately from mixed content (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/browser/ssl/ssl_manager.h
diff --git a/content/browser/ssl/ssl_manager.h b/content/browser/ssl/ssl_manager.h
index 82e724b524244e27f6cb909a3d9bd2a4e6c70384..96a1181d04c545e94a09d7fa94859a11583421d4 100644
--- a/content/browser/ssl/ssl_manager.h
+++ b/content/browser/ssl/ssl_manager.h
@@ -87,9 +87,12 @@ class CONTENT_EXPORT SSLManager {
void DidStartResourceResponse(const ResourceRequestDetails& details);
void DidReceiveResourceRedirect(const ResourceRedirectDetails& details);
- // Insecure content entry point.
+ // Entry point for insecure mixed content (loaded over HTTP).
void DidRunInsecureContent(const GURL& security_origin);
+ // Entry point for content loaded with HTTPS certificate errors.
+ void DidRunContentWithCertErrors(const GURL& security_origin);
+
private:
// Updates the NavigationEntry with our current state. This will
// notify the WebContents of an SSL state change if a change was

Powered by Google App Engine
This is Rietveld 408576698