Index: net/quic/core/quic_sent_packet_manager_interface.h |
diff --git a/net/quic/core/quic_sent_packet_manager_interface.h b/net/quic/core/quic_sent_packet_manager_interface.h |
index b68da8fb8adb16249ed2f0462d450edcf4ac5d54..22cc7a225623dcb904884cd6cf96e9ed8a819f62 100644 |
--- a/net/quic/core/quic_sent_packet_manager_interface.h |
+++ b/net/quic/core/quic_sent_packet_manager_interface.h |
@@ -6,23 +6,23 @@ |
#define NET_QUIC_CORE_QUIC_SENT_PACKET_MANAGER_INTERFACE_H_ |
#include "base/macros.h" |
-#include "net/base/net_export.h" |
#include "net/quic/core/congestion_control/send_algorithm_interface.h" |
#include "net/quic/core/quic_packets.h" |
#include "net/quic/core/quic_pending_retransmission.h" |
#include "net/quic/core/quic_sustained_bandwidth_recorder.h" |
+#include "net/quic/platform/api/quic_export.h" |
namespace net { |
class QuicConfig; |
class RttStats; |
-class NET_EXPORT_PRIVATE QuicSentPacketManagerInterface { |
+class QUIC_EXPORT_PRIVATE QuicSentPacketManagerInterface { |
public: |
// Interface which gets callbacks from the QuicSentPacketManager at |
// interesting points. Implementations must not mutate the state of |
// the packet manager or connection as a result of these callbacks. |
- class NET_EXPORT_PRIVATE DebugDelegate { |
+ class QUIC_EXPORT_PRIVATE DebugDelegate { |
public: |
virtual ~DebugDelegate() {} |
@@ -45,7 +45,7 @@ class NET_EXPORT_PRIVATE QuicSentPacketManagerInterface { |
// Interface which gets callbacks from the QuicSentPacketManager when |
// network-related state changes. Implementations must not mutate the |
// state of the packet manager as a result of these callbacks. |
- class NET_EXPORT_PRIVATE NetworkChangeVisitor { |
+ class QUIC_EXPORT_PRIVATE NetworkChangeVisitor { |
public: |
virtual ~NetworkChangeVisitor() {} |