| OLD | NEW |
| 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_framer.h" | 5 #include "net/quic/core/quic_framer.h" |
| 6 | 6 |
| 7 #include <cstdint> | 7 #include <cstdint> |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| (...skipping 2167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2178 QuicIOVector iov, | 2178 QuicIOVector iov, |
| 2179 size_t iov_offset, | 2179 size_t iov_offset, |
| 2180 QuicStreamOffset offset, | 2180 QuicStreamOffset offset, |
| 2181 QuicByteCount data_length) { | 2181 QuicByteCount data_length) { |
| 2182 DCHECK_NE(nullptr, data_producer_); | 2182 DCHECK_NE(nullptr, data_producer_); |
| 2183 if (data_producer_ != nullptr) { | 2183 if (data_producer_ != nullptr) { |
| 2184 data_producer_->SaveStreamData(id, iov, iov_offset, offset, data_length); | 2184 data_producer_->SaveStreamData(id, iov, iov_offset, offset, data_length); |
| 2185 } | 2185 } |
| 2186 } | 2186 } |
| 2187 | 2187 |
| 2188 #undef ENDPOINT |
| 2189 |
| 2188 } // namespace net | 2190 } // namespace net |
| OLD | NEW |