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

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

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: Rebase 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.h
diff --git a/net/quic/crypto/proof_verifier_chromium.h b/net/quic/crypto/proof_verifier_chromium.h
index c67ce8c6c943fcc069760edc9fb086a4de2365d2..5e6ba99447cab8c3a8df611a97bd801d0d4df7e4 100644
--- a/net/quic/crypto/proof_verifier_chromium.h
+++ b/net/quic/crypto/proof_verifier_chromium.h
@@ -24,8 +24,13 @@ class CertVerifier;
// ProofVerifyDetailsChromium is the implementation-specific information that a
// ProofVerifierChromium returns about a certificate verification.
-struct ProofVerifyDetailsChromium : public ProofVerifyDetails {
+class NET_EXPORT_PRIVATE ProofVerifyDetailsChromium
+ : public ProofVerifyDetails {
public:
+
+ // ProofVerifyDetails implementation
+ virtual ProofVerifyDetails* Clone() const OVERRIDE;
+
CertVerifyResult cert_verify_result;
};

Powered by Google App Engine
This is Rietveld 408576698