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

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

Issue 422623004: Add a Clone method to ProofVerifyDetails to allow for the proof verify (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add comment Created 6 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.cc
diff --git a/net/quic/crypto/proof_verifier_chromium.cc b/net/quic/crypto/proof_verifier_chromium.cc
index 43cd52bacf986153f4efef483192d64a99a4ed9c..60f893174938cc204265775cb44b657f17e1c8c9 100644
--- a/net/quic/crypto/proof_verifier_chromium.cc
+++ b/net/quic/crypto/proof_verifier_chromium.cc
@@ -31,6 +31,12 @@ using std::vector;
namespace net {
+ProofVerifyDetails* ProofVerifyDetailsChromium::Clone() const {
+ ProofVerifyDetailsChromium* other = new ProofVerifyDetailsChromium;
+ other->cert_verify_result.CopyFrom(cert_verify_result);
wtc 2014/07/29 01:48:24 I wonder why we don't just do other->cert_verif
Ryan Hamilton 2014/07/29 17:04:50 Done. I wonder why it has a CopyFrom method?
+ return NULL;
wtc 2014/07/29 01:48:24 BUG: return other; You owe me a lunch :-)
Ryan Hamilton 2014/07/29 17:04:50 Done. (I had not yet verified the fix :>)
+}
+
// A Job handles the verification of a single proof. It is owned by the
// ProofVerifier. If the verification can not complete synchronously, it
// will notify the ProofVerifier upon completion.

Powered by Google App Engine
This is Rietveld 408576698