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

Side by Side Diff: net/quic/core/quic_session.cc

Issue 2867693004: Snapshot of all changes to get jumbo in blink and content.
Patch Set: Exclude certain files from jumbo because of a Windows problem Created 3 years, 3 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 unified diff | Download patch
« no previous file with comments | « net/quic/core/quic_sent_packet_manager.cc ('k') | net/quic/core/quic_spdy_stream.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "net/quic/core/quic_session.h" 5 #include "net/quic/core/quic_session.h"
6 6
7 #include <cstdint> 7 #include <cstdint>
8 #include <utility> 8 #include <utility>
9 9
10 #include "net/quic/core/quic_connection.h" 10 #include "net/quic/core/quic_connection.h"
(...skipping 950 matching lines...) Expand 10 before | Expand all | Expand 10 after
961 QuicStream* stream = GetStream(id); 961 QuicStream* stream = GetStream(id);
962 if (stream == nullptr) { 962 if (stream == nullptr) {
963 // This causes the connection to be closed because of failed to serialize 963 // This causes the connection to be closed because of failed to serialize
964 // packet. 964 // packet.
965 QUIC_BUG << "Stream " << id << " does not exist when trying to write data."; 965 QUIC_BUG << "Stream " << id << " does not exist when trying to write data.";
966 return false; 966 return false;
967 } 967 }
968 return stream->WriteStreamData(offset, data_length, writer); 968 return stream->WriteStreamData(offset, data_length, writer);
969 } 969 }
970 970
971 #undef ENDPOINT
972
971 } // namespace net 973 } // namespace net
OLDNEW
« no previous file with comments | « net/quic/core/quic_sent_packet_manager.cc ('k') | net/quic/core/quic_spdy_stream.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698