Index: content/browser/ssl/ssl_manager.cc |
diff --git a/content/browser/ssl/ssl_manager.cc b/content/browser/ssl/ssl_manager.cc |
index f50efb23689b14011ffb375f25577844c4376c0c..cb2e54037e25e22c0e7011b63485a50f8b7ee008 100644 |
--- a/content/browser/ssl/ssl_manager.cc |
+++ b/content/browser/ssl/ssl_manager.cc |
@@ -166,6 +166,12 @@ void SSLManager::DidRunInsecureContent(const GURL& security_origin) { |
UpdateEntry(navigation_entry); |
} |
+void SSLManager::DidRunContentWithCertErrors(const GURL& security_origin) { |
+ NavigationEntryImpl* navigation_entry = controller_->GetLastCommittedEntry(); |
+ policy()->DidRunContentWithCertErrors(navigation_entry, security_origin); |
+ UpdateEntry(navigation_entry); |
+} |
+ |
void SSLManager::DidStartResourceResponse( |
const ResourceRequestDetails& details) { |
// Notify our policy that we started a resource request. Ideally, the |