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

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

Issue 2512063003: Move QuicIoVector into its own header file. No behavior change. (Closed)
Patch Set: Created 4 years, 1 month 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_packet_creator.h ('k') | net/quic/core/quic_stream.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/core/quic_protocol.h
diff --git a/net/quic/core/quic_protocol.h b/net/quic/core/quic_protocol.h
index 69bc7f166cf958e3eaac5f332e133e45ba3ac98f..7ebff6b3436a400e4dc2064b02e17422df9171b2 100644
--- a/net/quic/core/quic_protocol.h
+++ b/net/quic/core/quic_protocol.h
@@ -764,17 +764,6 @@ struct PendingRetransmission {
QuicPacketNumberLength packet_number_length;
};
-// 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 {
- QuicIOVector(const struct iovec* iov, int iov_count, size_t total_length)
- : iov(iov), iov_count(iov_count), total_length(total_length) {}
-
- const struct iovec* iov;
- const int iov_count;
- const size_t total_length;
-};
-
} // namespace net
#endif // NET_QUIC_QUIC_PROTOCOL_H_
« no previous file with comments | « net/quic/core/quic_packet_creator.h ('k') | net/quic/core/quic_stream.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698