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

Unified Diff: net/quic/core/quic_stream_sequencer_buffer.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_stream_sequencer.h ('k') | net/quic/core/quic_stream_sequencer_buffer_interface.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/core/quic_stream_sequencer_buffer.h
diff --git a/net/quic/core/quic_stream_sequencer_buffer.h b/net/quic/core/quic_stream_sequencer_buffer.h
index 33ca5211cfa314ec4e02d8786f5031414e7b7005..f4c55454e4e5ddaf885c47f879062c6fef7f69b8 100644
--- a/net/quic/core/quic_stream_sequencer_buffer.h
+++ b/net/quic/core/quic_stream_sequencer_buffer.h
@@ -67,8 +67,8 @@
#include <memory>
#include "base/macros.h"
-#include "net/base/net_export.h"
#include "net/quic/core/quic_packets.h"
+#include "net/quic/platform/api/quic_export.h"
namespace net {
@@ -76,18 +76,18 @@ namespace test {
class QuicStreamSequencerBufferPeer;
} // namespace test
-class NET_EXPORT_PRIVATE QuicStreamSequencerBuffer {
+class QUIC_EXPORT_PRIVATE QuicStreamSequencerBuffer {
public:
// A Gap indicates a missing chunk of bytes between
// [begin_offset, end_offset) in the stream
- struct NET_EXPORT_PRIVATE Gap {
+ struct QUIC_EXPORT_PRIVATE Gap {
Gap(QuicStreamOffset begin_offset, QuicStreamOffset end_offset);
QuicStreamOffset begin_offset;
QuicStreamOffset end_offset;
};
// A FrameInfo stores the length of a frame and the time it arrived.
- struct NET_EXPORT_PRIVATE FrameInfo {
+ struct QUIC_EXPORT_PRIVATE FrameInfo {
FrameInfo();
FrameInfo(size_t length, QuicTime timestamp);
« no previous file with comments | « net/quic/core/quic_stream_sequencer.h ('k') | net/quic/core/quic_stream_sequencer_buffer_interface.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698