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

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

Issue 1437023002: Landing Recent QUIC changes until 2015-11-09 20:32 UTC (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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/proof_verifier_chromium.h ('k') | net/quic/crypto/proof_verifier_chromium_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 8defdad43300ec21e83977855467b2e2f732a3de..68f228616e155355cafbe9a3b10de5a1218fe71e 100644
--- a/net/quic/crypto/proof_verifier_chromium.cc
+++ b/net/quic/crypto/proof_verifier_chromium.cc
@@ -58,6 +58,7 @@ class ProofVerifierChromium::Job {
QuicAsyncStatus VerifyProof(const std::string& hostname,
const std::string& server_config,
const std::vector<std::string>& certs,
+ const std::string& cert_sct,
const std::string& signature,
std::string* error_details,
scoped_ptr<ProofVerifyDetails>* verify_details,
@@ -130,6 +131,7 @@ QuicAsyncStatus ProofVerifierChromium::Job::VerifyProof(
const string& hostname,
const string& server_config,
const vector<string>& certs,
+ const std::string& cert_sct,
const string& signature,
std::string* error_details,
scoped_ptr<ProofVerifyDetails>* verify_details,
@@ -382,6 +384,7 @@ QuicAsyncStatus ProofVerifierChromium::VerifyProof(
const std::string& hostname,
const std::string& server_config,
const std::vector<std::string>& certs,
+ const std::string& cert_sct,
const std::string& signature,
const ProofVerifyContext* verify_context,
std::string* error_details,
@@ -397,8 +400,8 @@ QuicAsyncStatus ProofVerifierChromium::VerifyProof(
this, cert_verifier_, cert_policy_enforcer_, transport_security_state_,
chromium_context->cert_verify_flags, chromium_context->net_log));
QuicAsyncStatus status =
- job->VerifyProof(hostname, server_config, certs, signature, error_details,
- verify_details, callback);
+ job->VerifyProof(hostname, server_config, certs, cert_sct, signature,
+ error_details, verify_details, callback);
if (status == QUIC_PENDING) {
active_jobs_.insert(job.release());
}
« no previous file with comments | « net/quic/crypto/proof_verifier_chromium.h ('k') | net/quic/crypto/proof_verifier_chromium_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698