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

Side by Side Diff: net/quic/core/reliable_quic_stream.h

Issue 2193073003: Move shared files in net/quic/ into net/quic/core/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: io_thread_unittest.cc Created 4 years, 4 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_write_blocked_list_test.cc ('k') | net/quic/core/reliable_quic_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 // The base class for client/server reliable streams. 5 // The base class for client/server reliable streams.
6 6
7 // It does not contain the entire interface needed by an application to interact 7 // It does not contain the entire interface needed by an application to interact
8 // with a QUIC stream. Some parts of the interface must be obtained by 8 // with a QUIC stream. Some parts of the interface must be obtained by
9 // accessing the owning session object. A subclass of ReliableQuicStream 9 // accessing the owning session object. A subclass of ReliableQuicStream
10 // connects the object and the application that generates and consumes the data 10 // connects the object and the application that generates and consumes the data
(...skipping 11 matching lines...) Expand all
22 #include <sys/types.h> 22 #include <sys/types.h>
23 23
24 #include <list> 24 #include <list>
25 #include <string> 25 #include <string>
26 26
27 #include "base/macros.h" 27 #include "base/macros.h"
28 #include "base/memory/ref_counted.h" 28 #include "base/memory/ref_counted.h"
29 #include "base/strings/string_piece.h" 29 #include "base/strings/string_piece.h"
30 #include "net/base/iovec.h" 30 #include "net/base/iovec.h"
31 #include "net/base/net_export.h" 31 #include "net/base/net_export.h"
32 #include "net/quic/quic_flow_controller.h" 32 #include "net/quic/core/quic_flow_controller.h"
33 #include "net/quic/quic_protocol.h" 33 #include "net/quic/core/quic_protocol.h"
34 #include "net/quic/quic_stream_sequencer.h" 34 #include "net/quic/core/quic_stream_sequencer.h"
35 #include "net/quic/quic_types.h" 35 #include "net/quic/core/quic_types.h"
36 36
37 namespace net { 37 namespace net {
38 38
39 namespace test { 39 namespace test {
40 class ReliableQuicStreamPeer; 40 class ReliableQuicStreamPeer;
41 } // namespace test 41 } // namespace test
42 42
43 class QuicSession; 43 class QuicSession;
44 44
45 class NET_EXPORT_PRIVATE ReliableQuicStream { 45 class NET_EXPORT_PRIVATE ReliableQuicStream {
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after
303 // connection level flow control limits (but are stream level flow control 303 // connection level flow control limits (but are stream level flow control
304 // limited). 304 // limited).
305 bool stream_contributes_to_connection_flow_control_; 305 bool stream_contributes_to_connection_flow_control_;
306 306
307 DISALLOW_COPY_AND_ASSIGN(ReliableQuicStream); 307 DISALLOW_COPY_AND_ASSIGN(ReliableQuicStream);
308 }; 308 };
309 309
310 } // namespace net 310 } // namespace net
311 311
312 #endif // NET_QUIC_RELIABLE_QUIC_STREAM_H_ 312 #endif // NET_QUIC_RELIABLE_QUIC_STREAM_H_
OLDNEW
« no previous file with comments | « net/quic/core/quic_write_blocked_list_test.cc ('k') | net/quic/core/reliable_quic_stream.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698