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 #ifndef NET_TOOLS_QUIC_QUIC_RELIABLE_SERVER_STREAM_H_ | 5 #ifndef NET_TOOLS_QUIC_QUIC_RELIABLE_SERVER_STREAM_H_ |
6 #define NET_TOOLS_QUIC_QUIC_RELIABLE_SERVER_STREAM_H_ | 6 #define NET_TOOLS_QUIC_QUIC_RELIABLE_SERVER_STREAM_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "net/quic/quic_protocol.h" | 10 #include "net/quic/quic_protocol.h" |
11 #include "net/quic/reliable_quic_stream.h" | 11 #include "net/quic/reliable_quic_stream.h" |
12 #include "net/tools/flip_server/balsa_headers.h" | 12 #include "net/tools/balsa/balsa_headers.h" |
13 | 13 |
14 namespace net { | 14 namespace net { |
15 | 15 |
16 class QuicSession; | 16 class QuicSession; |
17 | 17 |
18 namespace tools { | 18 namespace tools { |
19 | 19 |
20 namespace test { | 20 namespace test { |
21 class QuicReliableServerStreamPeer; | 21 class QuicReliableServerStreamPeer; |
22 } // namespace test | 22 } // namespace test |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 friend class test::QuicReliableServerStreamPeer; | 57 friend class test::QuicReliableServerStreamPeer; |
58 | 58 |
59 BalsaHeaders headers_; | 59 BalsaHeaders headers_; |
60 string body_; | 60 string body_; |
61 }; | 61 }; |
62 | 62 |
63 } // namespace tools | 63 } // namespace tools |
64 } // namespace net | 64 } // namespace net |
65 | 65 |
66 #endif // NET_TOOLS_QUIC_QUIC_RELIABLE_SERVER_STREAM_H_ | 66 #endif // NET_TOOLS_QUIC_QUIC_RELIABLE_SERVER_STREAM_H_ |
OLD | NEW |