Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(741)

Unified Diff: net/quic/core/congestion_control/bandwidth_sampler.h

Issue 2561893002: Add QUIC_EXPORT macros (Closed)
Patch Set: no chromium Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | net/quic/core/congestion_control/bbr_sender.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/core/congestion_control/bandwidth_sampler.h
diff --git a/net/quic/core/congestion_control/bandwidth_sampler.h b/net/quic/core/congestion_control/bandwidth_sampler.h
index b852604f5158062acaab1aa51d86474b494c9773..7283506ae2a525dd3f31049cba4cbea04b959473 100644
--- a/net/quic/core/congestion_control/bandwidth_sampler.h
+++ b/net/quic/core/congestion_control/bandwidth_sampler.h
@@ -9,6 +9,7 @@
#include "net/quic/core/quic_bandwidth.h"
#include "net/quic/core/quic_packets.h"
#include "net/quic/core/quic_time.h"
+#include "net/quic/platform/api/quic_export.h"
Zhongyi Shi 2016/12/08 23:19:31 I actually didn't see this file present in this CL
Ryan Hamilton 2016/12/09 00:40:41 *scratch head* I don't understand how that happene
namespace net {
@@ -16,7 +17,7 @@ namespace test {
class BandwidthSamplerPeer;
} // namespace test
-struct NET_EXPORT_PRIVATE BandwidthSample {
+struct QUIC_EXPORT_PRIVATE BandwidthSample {
// The bandwidth at that particular sample. Zero if no valid bandwidth sample
// is available.
QuicBandwidth bandwidth;
@@ -115,7 +116,7 @@ struct NET_EXPORT_PRIVATE BandwidthSample {
// up until an ack for a packet that was sent after OnAppLimited() was called.
// Note that while the scenario above is not the only scenario when the
// connection is app-limited, the approach works in other cases too.
-class NET_EXPORT_PRIVATE BandwidthSampler {
+class QUIC_EXPORT_PRIVATE BandwidthSampler {
public:
BandwidthSampler();
~BandwidthSampler();
« no previous file with comments | « no previous file | net/quic/core/congestion_control/bbr_sender.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698