// Copyright 2013 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef NET_QUIC_CRYPTO_PROOF_SOURCE_CHROMIUM_H_ #define NET_QUIC_CRYPTO_PROOF_SOURCE_CHROMIUM_H_ #include <string> #include <vector> #include "base/compiler_specific.h" #include "base/files/file_util.h" #include "crypto/rsa_private_key.h" #include "net/base/net_export.h" #include "net/cert/x509_certificate.h" #include "net/third_party/quiche/src/quiche/quic/core/crypto/proof_source.h" namespace net { // ProofSourceChromium implements the QUIC quic::ProofSource interface. // TODO(rtenneti): implement details of this class. class NET_EXPORT_PRIVATE ProofSourceChromium : public quic::ProofSource { … }; } // namespace net #endif // NET_QUIC_CRYPTO_PROOF_SOURCE_CHROMIUM_H_