Index: chrome/browser/ssl/bad_clock_blocking_page.cc |
diff --git a/chrome/browser/ssl/bad_clock_blocking_page.cc b/chrome/browser/ssl/bad_clock_blocking_page.cc |
index dcdfae4d86b293af2d120b96540bde434a840cb0..6cf112d084805d0c28c5a14364173f53f8a2af35 100644 |
--- a/chrome/browser/ssl/bad_clock_blocking_page.cc |
+++ b/chrome/browser/ssl/bad_clock_blocking_page.cc |
@@ -24,7 +24,6 @@ |
#include "content/public/browser/navigation_entry.h" |
#include "content/public/browser/render_process_host.h" |
#include "content/public/browser/render_view_host.h" |
-#include "content/public/browser/signed_certificate_timestamp_store.h" |
#include "content/public/browser/web_contents.h" |
#include "content/public/common/renderer_preferences.h" |
#include "content/public/common/ssl_status.h" |
@@ -115,19 +114,9 @@ void BadClockBlockingPage::OverrideEntry(NavigationEntry* entry) { |
ssl_info_.cert.get(), process_id); |
DCHECK(cert_id); |
- content::SignedCertificateTimestampStore* sct_store( |
- content::SignedCertificateTimestampStore::GetInstance()); |
- content::SignedCertificateTimestampIDStatusList sct_ids; |
- for (const auto& sct_and_status : ssl_info_.signed_certificate_timestamps) { |
- const int sct_id(sct_store->Store(sct_and_status.sct.get(), process_id)); |
- DCHECK(sct_id); |
- sct_ids.push_back(content::SignedCertificateTimestampIDAndStatus( |
- sct_id, sct_and_status.status)); |
- } |
- |
entry->GetSSL() = |
content::SSLStatus(content::SECURITY_STYLE_AUTHENTICATION_BROKEN, cert_id, |
- sct_ids, ssl_info_); |
+ ssl_info_); |
} |
void BadClockBlockingPage::SetSSLCertReporterForTesting( |