| Index: net/quic/core/crypto/proof_source.h
|
| diff --git a/net/quic/core/crypto/proof_source.h b/net/quic/core/crypto/proof_source.h
|
| index 2b9a0624dc05573b78351312d028ff700fa67fc5..88bf2d391664a42d1cce945d1ba49b947909f627 100644
|
| --- a/net/quic/core/crypto/proof_source.h
|
| +++ b/net/quic/core/crypto/proof_source.h
|
| @@ -10,20 +10,20 @@
|
| #include <vector>
|
|
|
| #include "base/memory/ref_counted.h"
|
| -#include "net/base/net_export.h"
|
| #include "net/quic/core/crypto/quic_crypto_proof.h"
|
| #include "net/quic/core/quic_packets.h"
|
| +#include "net/quic/platform/api/quic_export.h"
|
| #include "net/quic/platform/api/quic_socket_address.h"
|
|
|
| namespace net {
|
|
|
| // ProofSource is an interface by which a QUIC server can obtain certificate
|
| // chains and signatures that prove its identity.
|
| -class NET_EXPORT_PRIVATE ProofSource {
|
| +class QUIC_EXPORT_PRIVATE ProofSource {
|
| public:
|
| // Chain is a reference-counted wrapper for a std::vector of std::stringified
|
| // certificates.
|
| - struct NET_EXPORT_PRIVATE Chain : public base::RefCounted<Chain> {
|
| + struct QUIC_EXPORT_PRIVATE Chain : public base::RefCounted<Chain> {
|
| explicit Chain(const std::vector<std::string>& certs);
|
|
|
| const std::vector<std::string> certs;
|
|
|