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

Unified Diff: net/cert/merkle_audit_proof.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_audit_proof.h ('k') | net/cert/merkle_tree_leaf.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/cert/merkle_audit_proof.cc
diff --git a/net/cert/merkle_audit_proof.cc b/net/cert/merkle_audit_proof.cc
index eef237e6dd76a6535d3aa4e32f62a3c8ef34b44e..675485b25890108277e604ab9b9ef05a61231305 100644
--- a/net/cert/merkle_audit_proof.cc
+++ b/net/cert/merkle_audit_proof.cc
@@ -30,10 +30,9 @@ uint64_t CalculateAuditPathLength(uint64_t leaf_index, uint64_t tree_size) {
MerkleAuditProof::MerkleAuditProof() {}
-MerkleAuditProof::MerkleAuditProof(const std::string& log_id,
- uint64_t leaf_index,
+MerkleAuditProof::MerkleAuditProof(uint64_t leaf_index,
const std::vector<std::string>& audit_path)
- : log_id(log_id), leaf_index(leaf_index), nodes(audit_path) {}
+ : leaf_index(leaf_index), nodes(audit_path) {}
MerkleAuditProof::~MerkleAuditProof() {}
« no previous file with comments | « net/cert/merkle_audit_proof.h ('k') | net/cert/merkle_tree_leaf.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698