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

Unified Diff: net/quic/crypto/proof_verifier_chromium_test.cc

Issue 2108833005: Adds domain names for all qualified CT logs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Make dns_domain a required parameter of CtLogVerifier::Create Created 4 years, 5 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/quic/crypto/proof_verifier_chromium_test.cc
diff --git a/net/quic/crypto/proof_verifier_chromium_test.cc b/net/quic/crypto/proof_verifier_chromium_test.cc
index fff1bf6d6b28203273945d02f028c67b126e1b39..2aea36fce2e4ff71b1a80adea5f7c571f9fab91a 100644
--- a/net/quic/crypto/proof_verifier_chromium_test.cc
+++ b/net/quic/crypto/proof_verifier_chromium_test.cc
@@ -118,8 +118,9 @@ class ProofVerifierChromiumTest : public ::testing::Test {
.WillRepeatedly(
Return(ct::EVPolicyCompliance::EV_POLICY_DOES_NOT_APPLY));
- scoped_refptr<const CTLogVerifier> log(CTLogVerifier::Create(
- ct::GetTestPublicKey(), kLogDescription, "https://test.example.com"));
+ scoped_refptr<const CTLogVerifier> log(
+ CTLogVerifier::Create(ct::GetTestPublicKey(), kLogDescription,
+ "https://test.example.com", nullptr));
eroman 2016/07/18 17:09:46 Same comment throughout (nullptr is not distinguis
Rob Percival 2016/07/18 18:19:47 Done.
ASSERT_TRUE(log);
log_verifiers_.push_back(log);
« net/cert/ct_objects_extractor_unittest.cc ('K') | « net/cert/multi_log_ct_verifier_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698