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

Unified Diff: net/quic/quartc/quartc_session_test.cc

Issue 2516033003: Landing Recent QUIC changes until Mon Nov 14 04:43:50 2016 +0000 (Closed)
Patch Set: Remove unused UpdatePacketGapSentHistogram() function. Created 4 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/quartc/quartc_session.cc ('k') | net/quic/test_tools/crypto_test_utils.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quartc/quartc_session_test.cc
diff --git a/net/quic/quartc/quartc_session_test.cc b/net/quic/quartc/quartc_session_test.cc
index b4ddc88e314b5aa070eff42f685d91028cafcda3..3027408e3e04ed66e13808dcd60e3189effdaa09 100644
--- a/net/quic/quartc/quartc_session_test.cc
+++ b/net/quic/quartc/quartc_session_test.cc
@@ -58,14 +58,13 @@ class FakeProofSource : public net::ProofSource {
base::StringPiece chlo_hash,
const net::QuicTagVector& connection_options,
scoped_refptr<net::ProofSource::Chain>* out_certs,
- std::string* out_signature,
- std::string* out_leaf_cert_sct) override {
+ net::QuicCryptoProof* proof) override {
if (success_) {
std::vector<std::string> certs;
certs.push_back("Required to establish handshake");
*out_certs = new ProofSource::Chain(certs);
- *out_signature = "Signature";
- *out_leaf_cert_sct = "Time";
+ proof->signature = "Signature";
+ proof->leaf_cert_scts = "Time";
}
return success_;
}
« no previous file with comments | « net/quic/quartc/quartc_session.cc ('k') | net/quic/test_tools/crypto_test_utils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698