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

Unified Diff: chrome/browser/io_thread.cc

Issue 337603003: Certificate Transparency: Switch to using a generated CT log list (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Switched to defining the size of the log_key array in the type definition Created 6 years, 6 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
« no previous file with comments | « no previous file | net/cert/ct_known_logs.h » ('j') | net/cert/multi_log_ct_verifier.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/io_thread.cc
diff --git a/chrome/browser/io_thread.cc b/chrome/browser/io_thread.cc
index 621ab62f84514d9ead273a88758a75eb8b3178b0..c061574ffb1e1d3433ceeaa44f0e9febe344aeaf 100644
--- a/chrome/browser/io_thread.cc
+++ b/chrome/browser/io_thread.cc
@@ -559,9 +559,7 @@ void IOThread::InitAsync() {
globals_->cert_transparency_verifier.reset(ct_verifier);
// Add built-in logs
- ct_verifier->AddLog(net::ct::CreateGooglePilotLogVerifier().Pass());
- ct_verifier->AddLog(net::ct::CreateGoogleAviatorLogVerifier().Pass());
- ct_verifier->AddLog(net::ct::CreateGoogleRocketeerLogVerifier().Pass());
+ ct_verifier->AddLogs(net::ct::CreateLogVerifiersForKnownLogs());
// Add logs from command line
if (command_line.HasSwitch(switches::kCertificateTransparencyLog)) {
« no previous file with comments | « no previous file | net/cert/ct_known_logs.h » ('j') | net/cert/multi_log_ct_verifier.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698