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

Unified Diff: net/quic/quic_packet_creator.cc

Issue 839143002: Roll Chrome into Mojo. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Rebase Created 5 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
« no previous file with comments | « net/quic/quic_packet_creator.h ('k') | net/quic/quic_packet_creator_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_packet_creator.cc
diff --git a/net/quic/quic_packet_creator.cc b/net/quic/quic_packet_creator.cc
index 866f05f6f3f182e70234ee67f7ee596ad8a8594a..40cad746cb0aa8ede55fb0249d36190d5b67aefc 100644
--- a/net/quic/quic_packet_creator.cc
+++ b/net/quic/quic_packet_creator.cc
@@ -261,23 +261,6 @@ size_t QuicPacketCreator::CreateStreamFrame(QuicStreamId id,
return bytes_consumed;
}
-size_t QuicPacketCreator::CreateStreamFrameWithNotifier(
- QuicStreamId id,
- const IOVector& data,
- QuicStreamOffset offset,
- bool fin,
- QuicAckNotifier* notifier,
- QuicFrame* frame) {
- size_t bytes_consumed = CreateStreamFrame(id, data, offset, fin, frame);
-
- // The frame keeps track of the QuicAckNotifier until it is serialized into
- // a packet. At that point the notifier is informed of the sequence number
- // of the packet that this frame was eventually sent in.
- frame->stream_frame->notifier = notifier;
-
- return bytes_consumed;
-}
-
SerializedPacket QuicPacketCreator::ReserializeAllFrames(
const QuicFrames& frames,
QuicSequenceNumberLength original_length) {
« no previous file with comments | « net/quic/quic_packet_creator.h ('k') | net/quic/quic_packet_creator_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698