| Index: net/quic/core/quic_crypto_client_stream.h
|
| diff --git a/net/quic/core/quic_crypto_client_stream.h b/net/quic/core/quic_crypto_client_stream.h
|
| index 20563775ec4c8112868778af34fde49466415e2d..cc937f09393f0507a7ea7d1a17c3c0c594b7a05a 100644
|
| --- a/net/quic/core/quic_crypto_client_stream.h
|
| +++ b/net/quic/core/quic_crypto_client_stream.h
|
| @@ -10,13 +10,13 @@
|
| #include <string>
|
|
|
| #include "base/macros.h"
|
| -#include "net/base/net_export.h"
|
| #include "net/quic/core/crypto/channel_id.h"
|
| #include "net/quic/core/crypto/proof_verifier.h"
|
| #include "net/quic/core/crypto/quic_crypto_client_config.h"
|
| #include "net/quic/core/quic_config.h"
|
| #include "net/quic/core/quic_crypto_stream.h"
|
| #include "net/quic/core/quic_server_id.h"
|
| +#include "net/quic/platform/api/quic_export.h"
|
|
|
| namespace net {
|
|
|
| @@ -25,7 +25,7 @@ class CryptoTestUtils;
|
| class QuicChromiumClientSessionPeer;
|
| } // namespace test
|
|
|
| -class NET_EXPORT_PRIVATE QuicCryptoClientStreamBase : public QuicCryptoStream {
|
| +class QUIC_EXPORT_PRIVATE QuicCryptoClientStreamBase : public QuicCryptoStream {
|
| public:
|
| explicit QuicCryptoClientStreamBase(QuicSession* session);
|
|
|
| @@ -45,7 +45,7 @@ class NET_EXPORT_PRIVATE QuicCryptoClientStreamBase : public QuicCryptoStream {
|
| virtual int num_scup_messages_received() const = 0;
|
| };
|
|
|
| -class NET_EXPORT_PRIVATE QuicCryptoClientStream
|
| +class QUIC_EXPORT_PRIVATE QuicCryptoClientStream
|
| : public QuicCryptoClientStreamBase {
|
| public:
|
| // kMaxClientHellos is the maximum number of times that we'll send a client
|
| @@ -58,7 +58,7 @@ class NET_EXPORT_PRIVATE QuicCryptoClientStream
|
|
|
| // ProofHandler is an interface that handles callbacks from the crypto
|
| // stream when the client has proof verification details of the server.
|
| - class NET_EXPORT_PRIVATE ProofHandler {
|
| + class QUIC_EXPORT_PRIVATE ProofHandler {
|
| public:
|
| virtual ~ProofHandler() {}
|
|
|
|
|