Index: net/quic/quartc/quartc_session.cc |
diff --git a/net/quic/quartc/quartc_session.cc b/net/quic/quartc/quartc_session.cc |
index 5f9ca3497b6a1e39369b8db881441fc3eabd5626..e31f72bb0dfafce1216e0fe4104a55dc55781057 100644 |
--- a/net/quic/quartc/quartc_session.cc |
+++ b/net/quic/quartc/quartc_session.cc |
@@ -28,14 +28,15 @@ class DummyProofSource : public net::ProofSource { |
~DummyProofSource() override {} |
// ProofSource override. |
- bool GetProof(const net::QuicSocketAddress& server_addr, |
- const std::string& hostname, |
- const std::string& server_config, |
- net::QuicVersion quic_version, |
- base::StringPiece chlo_hash, |
- const net::QuicTagVector& connection_options, |
- scoped_refptr<net::ProofSource::Chain>* out_chain, |
- net::QuicCryptoProof* proof) override { |
+ bool GetProof( |
+ const net::QuicSocketAddress& server_addr, |
+ const std::string& hostname, |
+ const std::string& server_config, |
+ net::QuicVersion quic_version, |
+ base::StringPiece chlo_hash, |
+ const net::QuicTagVector& connection_options, |
+ net::QuicReferenceCountedPointer<net::ProofSource::Chain>* out_chain, |
+ net::QuicCryptoProof* proof) override { |
std::vector<std::string> certs; |
certs.push_back("Dummy cert"); |
*out_chain = new ProofSource::Chain(certs); |