| Index: content/browser/ssl/ssl_manager.cc
|
| diff --git a/content/browser/ssl/ssl_manager.cc b/content/browser/ssl/ssl_manager.cc
|
| index 4526ab3d13e622ed6a6437f776e42ec9eb153273..ee1bd4bfbb64eaeaccecd1339f54e9c59f696526 100644
|
| --- a/content/browser/ssl/ssl_manager.cc
|
| +++ b/content/browser/ssl/ssl_manager.cc
|
| @@ -140,6 +140,14 @@ void SSLManager::DidRunInsecureContent(const GURL& security_origin) {
|
| UpdateEntry(navigation_entry);
|
| }
|
|
|
| +void SSLManager::DidRunContentWithCertificateErrors(
|
| + const GURL& security_origin) {
|
| + NavigationEntryImpl* navigation_entry = controller_->GetLastCommittedEntry();
|
| + policy()->DidRunContentWithCertificateErrors(navigation_entry,
|
| + security_origin);
|
| + UpdateEntry(navigation_entry);
|
| +}
|
| +
|
| void SSLManager::DidLoadFromMemoryCache(
|
| const LoadFromMemoryCacheDetails& details) {
|
| // Simulate loading this resource through the usual path.
|
|
|