1 // Copyright 2022 The Chromium Authors 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #ifndef NET_QUIC_CRYPTO_TEST_UTILS_CHROMIUM_H_ 6 #define NET_QUIC_CRYPTO_TEST_UTILS_CHROMIUM_H_ 7 8 #include <memory> 9 10 #include "net/third_party/quiche/src/quiche/quic/core/crypto/proof_source.h" 11 #include "net/third_party/quiche/src/quiche/quic/core/crypto/proof_verifier.h" 12 13 namespace net::test { 14 15 std::unique_ptr<quic::ProofSource> ProofSourceForTestingChromium(); 16 17 } // namespace net::test 18 19 #endif // NET_QUIC_CRYPTO_TEST_UTILS_CHROMIUM_H_ 20