| Index: net/quic/core/quic_packet_writer.h
|
| diff --git a/net/quic/core/quic_packet_writer.h b/net/quic/core/quic_packet_writer.h
|
| index 056f1ed2b306ed0be2a43b38a1a4b6eea9ff8e0b..eb302642952cd93388a90f24851c620a1a125944 100644
|
| --- a/net/quic/core/quic_packet_writer.h
|
| +++ b/net/quic/core/quic_packet_writer.h
|
| @@ -7,15 +7,15 @@
|
|
|
| #include <stddef.h>
|
|
|
| -#include "net/base/net_export.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 {
|
|
|
| struct WriteResult;
|
|
|
| -class NET_EXPORT_PRIVATE PerPacketOptions {
|
| +class QUIC_EXPORT_PRIVATE PerPacketOptions {
|
| public:
|
| PerPacketOptions() = default;
|
| virtual ~PerPacketOptions() {}
|
| @@ -33,7 +33,7 @@ class NET_EXPORT_PRIVATE PerPacketOptions {
|
| // An interface between writers and the entity managing the
|
| // socket (in our case the QuicDispatcher). This allows the Dispatcher to
|
| // control writes, and manage any writers who end up write blocked.
|
| -class NET_EXPORT_PRIVATE QuicPacketWriter {
|
| +class QUIC_EXPORT_PRIVATE QuicPacketWriter {
|
| public:
|
| virtual ~QuicPacketWriter() {}
|
|
|
|
|