Index: net/quic/core/crypto/crypto_server_config_protobuf.h |
diff --git a/net/quic/core/crypto/crypto_server_config_protobuf.h b/net/quic/core/crypto/crypto_server_config_protobuf.h |
index 4c23ade4545f00c95378bc2e69479fd7a0fd2ae3..8efff03cffee58888a273bea87b62387eabe7272 100644 |
--- a/net/quic/core/crypto/crypto_server_config_protobuf.h |
+++ b/net/quic/core/crypto/crypto_server_config_protobuf.h |
@@ -16,20 +16,20 @@ |
#include "base/macros.h" |
#include "base/memory/ptr_util.h" |
#include "base/strings/string_piece.h" |
-#include "net/base/net_export.h" |
#include "net/quic/core/crypto/crypto_protocol.h" |
+#include "net/quic/platform/api/quic_export.h" |
namespace net { |
// QuicServerConfigProtobuf contains QUIC server config block and the private |
// keys needed to prove ownership. |
// TODO(rch): sync with server more rationally. |
-class NET_EXPORT_PRIVATE QuicServerConfigProtobuf { |
+class QUIC_EXPORT_PRIVATE QuicServerConfigProtobuf { |
public: |
// PrivateKey contains a QUIC tag of a key exchange algorithm and a |
// serialised private key for that algorithm. The format of the serialised |
// private key is specific to the algorithm in question. |
- class NET_EXPORT_PRIVATE PrivateKey { |
+ class QUIC_EXPORT_PRIVATE PrivateKey { |
public: |
QuicTag tag() const { return tag_; } |
void set_tag(QuicTag tag) { tag_ = tag; } |