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

Unified Diff: net/quic/quic_data_writer.h

Issue 11958018: Queueing QUIC frames to be resent instead of packets and packing RST frames with acks and congestio… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 11 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/quic_data_writer.h
diff --git a/net/quic/quic_data_writer.h b/net/quic/quic_data_writer.h
index d5f9bb61d8e3b5f4eeac47d3c637d7ef9330362b..3ca4fa32714a80a99562094039cabaa92a007ef5 100644
--- a/net/quic/quic_data_writer.h
+++ b/net/quic/quic_data_writer.h
@@ -53,13 +53,6 @@ class NET_EXPORT_PRIVATE QuicDataWriter {
bool WriteUInt8ToOffset(uint8 value, size_t offset);
bool WriteUInt48ToOffset(uint64 value, size_t offset);
- static void WriteUint8ToBuffer(uint8 value, char* buffer);
- static void WriteUint16ToBuffer(uint16 value, char* buffer);
- static void WriteUint32ToBuffer(uint32 value, char* buffer);
- static void WriteUint48ToBuffer(uint64 value, char* buffer);
- static void WriteUint64ToBuffer(uint64 value, char* buffer);
- static void WriteUint128ToBuffer(uint128 value, char* buffer);
-
size_t capacity() const {
return capacity_;
}

Powered by Google App Engine
This is Rietveld 408576698