| 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_;
|
| }
|
|
|