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

Unified Diff: net/quic/reliable_quic_stream.h

Issue 15937012: Land Recent QUIC changes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Small bug fixes Created 7 years, 7 months 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
Index: net/quic/reliable_quic_stream.h
diff --git a/net/quic/reliable_quic_stream.h b/net/quic/reliable_quic_stream.h
index 51ca55e74176a87cfe798223799273042069a1bf..279c0bf4c886c3af25e583b5f3c1b292737b2db6 100644
--- a/net/quic/reliable_quic_stream.h
+++ b/net/quic/reliable_quic_stream.h
@@ -85,8 +85,8 @@ class NET_EXPORT_PRIVATE ReliableQuicStream : public
// This block of functions wraps the sequencer's functions of the same
// name. These methods return uncompressed data until that has
// been fully processed. Then they simply delegate to the sequencer.
- virtual int Readv(const struct iovec* iov, int iov_len);
- virtual int GetReadableRegions(iovec* iov, int iov_len);
+ virtual int Readv(const struct iovec* iov, size_t iov_len);
+ virtual int GetReadableRegions(iovec* iov, size_t iov_len);
virtual bool IsHalfClosed() const;
virtual bool IsClosed() const;
virtual bool HasBytesToRead() const;

Powered by Google App Engine
This is Rietveld 408576698