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

Unified Diff: net/test/ct_test_util.cc

Issue 2107423004: Certificate Transparency: MerkleTreeLeaf, MerkleAuditProof improvements. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixing botched merge 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
« no previous file with comments | « net/cert/merkle_tree_leaf_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/test/ct_test_util.cc
diff --git a/net/test/ct_test_util.cc b/net/test/ct_test_util.cc
index c22dd3a4ddb8c2906c3ecadd343f708fc0a31739..3d79967f14f24e9c1220928ece2f522e18face23 100644
--- a/net/test/ct_test_util.cc
+++ b/net/test/ct_test_util.cc
@@ -179,7 +179,6 @@ void GetX509CertLogEntry(LogEntry* entry) {
}
void GetX509CertTreeLeaf(MerkleTreeLeaf* tree_leaf) {
- tree_leaf->log_id = HexToBytes(kTestKeyId);
tree_leaf->timestamp = base::Time::FromJsTime(kTestTimestamp);
GetX509CertLogEntry(&tree_leaf->log_entry);
tree_leaf->extensions = HexToBytes(kDefaultExtensions);
@@ -195,7 +194,6 @@ void GetPrecertLogEntry(LogEntry* entry) {
}
void GetPrecertTreeLeaf(MerkleTreeLeaf* tree_leaf) {
- tree_leaf->log_id = HexToBytes(kTestKeyId);
tree_leaf->timestamp = base::Time::FromJsTime(kTestTimestamp);
GetPrecertLogEntry(&tree_leaf->log_entry);
tree_leaf->extensions = HexToBytes(kDefaultExtensions);
« no previous file with comments | « net/cert/merkle_tree_leaf_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698