| Index: net/quic/core/quic_packet_creator.h
|
| diff --git a/net/quic/core/quic_packet_creator.h b/net/quic/core/quic_packet_creator.h
|
| index 2fa5c906b35cc46adb203d4d688932626aec8a00..e02a3359703f95b31e988c80f6f672d814d709c1 100644
|
| --- a/net/quic/core/quic_packet_creator.h
|
| +++ b/net/quic/core/quic_packet_creator.h
|
| @@ -20,22 +20,22 @@
|
|
|
| #include "base/macros.h"
|
| #include "base/strings/string_piece.h"
|
| -#include "net/base/net_export.h"
|
| #include "net/quic/core/quic_connection_close_delegate_interface.h"
|
| #include "net/quic/core/quic_framer.h"
|
| #include "net/quic/core/quic_iovector.h"
|
| #include "net/quic/core/quic_packets.h"
|
| #include "net/quic/core/quic_pending_retransmission.h"
|
| +#include "net/quic/platform/api/quic_export.h"
|
|
|
| namespace net {
|
| namespace test {
|
| class QuicPacketCreatorPeer;
|
| }
|
|
|
| -class NET_EXPORT_PRIVATE QuicPacketCreator {
|
| +class QUIC_EXPORT_PRIVATE QuicPacketCreator {
|
| public:
|
| // A delegate interface for further processing serialized packet.
|
| - class NET_EXPORT_PRIVATE DelegateInterface
|
| + class QUIC_EXPORT_PRIVATE DelegateInterface
|
| : public QuicConnectionCloseDelegateInterface {
|
| public:
|
| ~DelegateInterface() override {}
|
| @@ -48,7 +48,7 @@ class NET_EXPORT_PRIVATE QuicPacketCreator {
|
| // Interface which gets callbacks from the QuicPacketCreator at interesting
|
| // points. Implementations must not mutate the state of the creator
|
| // as a result of these callbacks.
|
| - class NET_EXPORT_PRIVATE DebugDelegate {
|
| + class QUIC_EXPORT_PRIVATE DebugDelegate {
|
| public:
|
| virtual ~DebugDelegate() {}
|
|
|
|
|