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

Unified Diff: net/cert/ct_known_logs.cc

Issue 1100003006: Certificate Transparency: Fetching of Signed Tree Heads (DRAFT) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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: net/cert/ct_known_logs.cc
diff --git a/net/cert/ct_known_logs.cc b/net/cert/ct_known_logs.cc
index 3002689d9b81611e48aabe78f24623357ca68888..8e7106485d88ddc0fcc612b35e1642991cbd91f8 100644
--- a/net/cert/ct_known_logs.cc
+++ b/net/cert/ct_known_logs.cc
@@ -21,7 +21,8 @@ ScopedVector<CTLogVerifier> CreateLogVerifiersForKnownLogs() {
const CTLogInfo& log(kCTLogList[i]);
base::StringPiece key(log.log_key, arraysize(log.log_key) - 1);
- verifiers.push_back(CTLogVerifier::Create(key, log.log_name).release());
+ verifiers.push_back(
+ CTLogVerifier::Create(key, log.log_name, log.log_url).release());
}
return verifiers.Pass();

Powered by Google App Engine
This is Rietveld 408576698