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

Unified Diff: net/cert/merkle_tree_leaf.cc

Issue 2017563002: Add Certificate Transparency logs auditing (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressing all comments Created 4 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
« net/cert/merkle_tree_leaf.h ('K') | « net/cert/merkle_tree_leaf.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/cert/merkle_tree_leaf.cc
diff --git a/net/cert/merkle_tree_leaf.cc b/net/cert/merkle_tree_leaf.cc
index 21e2814402cacc2adfb1aa90d90ec38472e1bf11..9e7cd7ca4d5fb92145d7783aa3bf20e61b4bb249 100644
--- a/net/cert/merkle_tree_leaf.cc
+++ b/net/cert/merkle_tree_leaf.cc
@@ -15,7 +15,11 @@ namespace ct {
MerkleTreeLeaf::MerkleTreeLeaf() {}
-MerkleTreeLeaf::~MerkleTreeLeaf() {}
+MerkleTreeLeaf::MerkleTreeLeaf(const MerkleTreeLeaf& other) = default;
+
+MerkleTreeLeaf::MerkleTreeLeaf(MerkleTreeLeaf&&) = default;
+
+MerkleTreeLeaf::~MerkleTreeLeaf() = default;
bool Hash(const MerkleTreeLeaf& tree_leaf, std::string* out) {
// Prepend 0 byte as per RFC 6962, section-2.1
« net/cert/merkle_tree_leaf.h ('K') | « net/cert/merkle_tree_leaf.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698