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

Unified Diff: net/quic/core/quic_iovector.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_headers_stream.h ('k') | net/quic/core/quic_multipath_received_packet_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/core/quic_iovector.h
diff --git a/net/quic/core/quic_iovector.h b/net/quic/core/quic_iovector.h
index 0e9d0b0c63f7ade1af86f246021aea1197c973b8..6e893e97e3b166608a6254e012e6aaa79180af52 100644
--- a/net/quic/core/quic_iovector.h
+++ b/net/quic/core/quic_iovector.h
@@ -8,13 +8,13 @@
#include <stddef.h>
#include "net/base/iovec.h"
-#include "net/base/net_export.h"
+#include "net/quic/platform/api/quic_export.h"
namespace net {
// Convenience wrapper to wrap an iovec array and the total length, which must
// be less than or equal to the actual total length of the iovecs.
-struct NET_EXPORT_PRIVATE QuicIOVector {
+struct QUIC_EXPORT_PRIVATE QuicIOVector {
QuicIOVector(const struct iovec* iov, int iov_count, size_t total_length)
: iov(iov), iov_count(iov_count), total_length(total_length) {}
« no previous file with comments | « net/quic/core/quic_headers_stream.h ('k') | net/quic/core/quic_multipath_received_packet_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698