OLD | NEW |
1 // Copyright (c) 2015 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2015 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_spdy_session.h" | 5 #include "net/quic/core/quic_spdy_session.h" |
6 | 6 |
7 #include <utility> | 7 #include <utility> |
8 | 8 |
9 #include "net/quic/core/quic_bug_tracker.h" | 9 #include "net/quic/core/quic_bug_tracker.h" |
10 #include "net/quic/core/quic_headers_stream.h" | 10 #include "net/quic/core/quic_headers_stream.h" |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
67 return; | 67 return; |
68 } | 68 } |
69 stream->OnStreamHeaderList(fin, frame_len, header_list); | 69 stream->OnStreamHeaderList(fin, frame_len, header_list); |
70 } | 70 } |
71 | 71 |
72 size_t QuicSpdySession::WriteHeaders( | 72 size_t QuicSpdySession::WriteHeaders( |
73 QuicStreamId id, | 73 QuicStreamId id, |
74 SpdyHeaderBlock headers, | 74 SpdyHeaderBlock headers, |
75 bool fin, | 75 bool fin, |
76 SpdyPriority priority, | 76 SpdyPriority priority, |
77 QuicAckListenerInterface* ack_notifier_delegate) { | 77 const scoped_refptr<QuicAckListenerInterface>& ack_notifier_delegate) { |
78 return headers_stream_->WriteHeaders(id, std::move(headers), fin, priority, | 78 return headers_stream_->WriteHeaders(id, std::move(headers), fin, priority, |
79 ack_notifier_delegate); | 79 ack_notifier_delegate); |
80 } | 80 } |
81 | 81 |
82 void QuicSpdySession::OnHeadersHeadOfLineBlocking(QuicTime::Delta delta) { | 82 void QuicSpdySession::OnHeadersHeadOfLineBlocking(QuicTime::Delta delta) { |
83 // Implemented in Chromium for stats tracking. | 83 // Implemented in Chromium for stats tracking. |
84 } | 84 } |
85 | 85 |
86 void QuicSpdySession::RegisterStreamPriority(QuicStreamId id, | 86 void QuicSpdySession::RegisterStreamPriority(QuicStreamId id, |
87 SpdyPriority priority) { | 87 SpdyPriority priority) { |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
159 DVLOG(1) << "De-encapsulating DATA frame for stream " << stream_id | 159 DVLOG(1) << "De-encapsulating DATA frame for stream " << stream_id |
160 << " offset " << offset << " len " << len << " fin " << fin; | 160 << " offset " << offset << " len " << len << " fin " << fin; |
161 OnStreamFrame(frame); | 161 OnStreamFrame(frame); |
162 } | 162 } |
163 | 163 |
164 bool QuicSpdySession::ShouldReleaseHeadersStreamSequencerBuffer() { | 164 bool QuicSpdySession::ShouldReleaseHeadersStreamSequencerBuffer() { |
165 return false; | 165 return false; |
166 } | 166 } |
167 | 167 |
168 } // namespace net | 168 } // namespace net |
OLD | NEW |