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

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

Issue 20898003: Revert 213862 "net: make QUIC ProofVerifier more generic." (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1578/src/
Patch Set: Created 7 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/quic/crypto/crypto_handshake.h ('k') | net/quic/crypto/proof_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/crypto/crypto_handshake.cc
===================================================================
--- net/quic/crypto/crypto_handshake.cc (revision 214032)
+++ net/quic/crypto/crypto_handshake.cc (working copy)
@@ -500,9 +500,9 @@
return generation_counter_;
}
-const ProofVerifyDetails*
-QuicCryptoClientConfig::CachedState::proof_verify_details() const {
- return proof_verify_details_.get();
+const CertVerifyResult*
+QuicCryptoClientConfig::CachedState::cert_verify_result() const {
+ return &cert_verify_result_;
}
void QuicCryptoClientConfig::CachedState::set_source_address_token(
@@ -510,9 +510,9 @@
source_address_token_ = token.as_string();
}
-void QuicCryptoClientConfig::CachedState::SetProofVerifyDetails(
- ProofVerifyDetails* details) {
- proof_verify_details_.reset(details);
+void QuicCryptoClientConfig::CachedState::SetCertVerifyResult(
+ const CertVerifyResult& cert_verify_result) {
+ cert_verify_result_.CopyFrom(cert_verify_result);
}
void QuicCryptoClientConfig::SetDefaults() {
« no previous file with comments | « net/quic/crypto/crypto_handshake.h ('k') | net/quic/crypto/proof_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698