Index: net/quic/core/congestion_control/bbr_sender.h |
diff --git a/net/quic/core/congestion_control/bbr_sender.h b/net/quic/core/congestion_control/bbr_sender.h |
index 0838c54cc6d5da840682499debbb67b32530bd33..89e5299a51b010f4f9ab6ad35442276fe5832b83 100644 |
--- a/net/quic/core/congestion_control/bbr_sender.h |
+++ b/net/quic/core/congestion_control/bbr_sender.h |
@@ -18,6 +18,7 @@ |
#include "net/quic/core/quic_packets.h" |
#include "net/quic/core/quic_time.h" |
#include "net/quic/core/quic_unacked_packet_map.h" |
+#include "net/quic/platform/api/quic_export.h" |
namespace net { |
@@ -36,7 +37,7 @@ typedef uint64_t QuicRoundTripCount; |
// TODO(vasilvv): implement traffic policer (long-term sampling) mode. |
// |
// TODO(vasilvv): implement packet conservation. |
-class NET_EXPORT_PRIVATE BbrSender : public SendAlgorithmInterface { |
+class QUIC_EXPORT_PRIVATE BbrSender : public SendAlgorithmInterface { |
public: |
enum Mode { |
// Startup phase of the connection. |
@@ -277,10 +278,11 @@ class NET_EXPORT_PRIVATE BbrSender : public SendAlgorithmInterface { |
DISALLOW_COPY_AND_ASSIGN(BbrSender); |
}; |
-NET_EXPORT_PRIVATE std::ostream& operator<<(std::ostream& os, |
- const BbrSender::Mode& mode); |
-NET_EXPORT_PRIVATE std::ostream& operator<<(std::ostream& os, |
- const BbrSender::DebugState& state); |
+QUIC_EXPORT_PRIVATE std::ostream& operator<<(std::ostream& os, |
+ const BbrSender::Mode& mode); |
+QUIC_EXPORT_PRIVATE std::ostream& operator<<( |
+ std::ostream& os, |
+ const BbrSender::DebugState& state); |
} // namespace net |