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

Unified Diff: net/quic/core/quic_buffered_packet_store.h

Issue 2561893002: Add QUIC_EXPORT macros (Closed)
Patch Set: More 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 | « net/quic/core/quic_buffer_allocator.h ('k') | net/quic/core/quic_client_promised_info.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/core/quic_buffered_packet_store.h
diff --git a/net/quic/core/quic_buffered_packet_store.h b/net/quic/core/quic_buffered_packet_store.h
index 124c301b2ddeaa7b9679e7f5871a75e81ea8401a..481b879cd0b9cb08b6452539edddf955277ce690 100644
--- a/net/quic/core/quic_buffered_packet_store.h
+++ b/net/quic/core/quic_buffered_packet_store.h
@@ -6,12 +6,12 @@
#define NET_QUIC_CORE_QUIC_BUFFERED_PACKET_STORE_H_
#include "net/base/linked_hash_map.h"
-#include "net/base/net_export.h"
#include "net/quic/core/quic_alarm.h"
#include "net/quic/core/quic_alarm_factory.h"
#include "net/quic/core/quic_packets.h"
#include "net/quic/core/quic_time.h"
#include "net/quic/platform/api/quic_clock.h"
+#include "net/quic/platform/api/quic_export.h"
#include "net/quic/platform/api/quic_socket_address.h"
namespace net {
@@ -29,7 +29,7 @@ class QuicBufferedPacketStorePeer;
// of connections: connections with CHLO buffered and those without CHLO. The
// latter has its own upper limit along with the max number of connections this
// store can hold. The former pool can grow till this store is full.
-class NET_EXPORT_PRIVATE QuicBufferedPacketStore {
+class QUIC_EXPORT_PRIVATE QuicBufferedPacketStore {
public:
enum EnqueuePacketResult {
SUCCESS = 0,
@@ -38,7 +38,7 @@ class NET_EXPORT_PRIVATE QuicBufferedPacketStore {
};
// A packets with client/server address.
- struct NET_EXPORT_PRIVATE BufferedPacket {
+ struct QUIC_EXPORT_PRIVATE BufferedPacket {
BufferedPacket(std::unique_ptr<QuicReceivedPacket> packet,
QuicSocketAddress server_address,
QuicSocketAddress client_address);
@@ -54,7 +54,7 @@ class NET_EXPORT_PRIVATE QuicBufferedPacketStore {
};
// A queue of BufferedPackets for a connection.
- struct NET_EXPORT_PRIVATE BufferedPacketList {
+ struct QUIC_EXPORT_PRIVATE BufferedPacketList {
BufferedPacketList();
BufferedPacketList(BufferedPacketList&& other);
@@ -69,7 +69,7 @@ class NET_EXPORT_PRIVATE QuicBufferedPacketStore {
typedef linked_hash_map<QuicConnectionId, BufferedPacketList>
BufferedPacketMap;
- class NET_EXPORT_PRIVATE VisitorInterface {
+ class QUIC_EXPORT_PRIVATE VisitorInterface {
public:
virtual ~VisitorInterface() {}
« no previous file with comments | « net/quic/core/quic_buffer_allocator.h ('k') | net/quic/core/quic_client_promised_info.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698