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

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

Issue 2188663003: Add plumbing for passing stats from calls to ProofSource::GetProof through QUIC. These stats are n… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@128459519
Patch Set: Rebase Created 4 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_test.cc
diff --git a/net/quic/crypto/proof_test.cc b/net/quic/crypto/proof_test.cc
index d2669a8462e41f489afaf98107331370d80bc0e4..dcd826b3f3d403fdb33ba0916c99fa364614798d 100644
--- a/net/quic/crypto/proof_test.cc
+++ b/net/quic/crypto/proof_test.cc
@@ -119,7 +119,8 @@ class TestCallback : public ProofSource::Callback {
void Run(bool ok,
const scoped_refptr<ProofSource::Chain>& chain,
const string& signature,
- const string& leaf_cert_sct) override {
+ const string& leaf_cert_sct,
+ std::unique_ptr<ProofSource::Details> /* details */) override {
*ok_ = ok;
*chain_ = chain;
*signature_ = signature;

Powered by Google App Engine
This is Rietveld 408576698