| 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_CLIENT_STREAM_H_ | 5 #ifndef NET_TOOLS_QUIC_QUIC_RELIABLE_CLIENT_STREAM_H_ |
| 6 #define NET_TOOLS_QUIC_QUIC_RELIABLE_CLIENT_STREAM_H_ | 6 #define NET_TOOLS_QUIC_QUIC_RELIABLE_CLIENT_STREAM_H_ |
| 7 | 7 |
| 8 #include <sys/types.h> | 8 #include <sys/types.h> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/strings/string_piece.h" | 11 #include "base/strings/string_piece.h" |
| 12 #include "net/quic/quic_protocol.h" | 12 #include "net/quic/quic_protocol.h" |
| 13 #include "net/quic/reliable_quic_stream.h" | 13 #include "net/quic/reliable_quic_stream.h" |
| 14 #include "net/tools/flip_server/balsa_frame.h" | 14 #include "net/tools/balsa/balsa_frame.h" |
| 15 #include "net/tools/flip_server/balsa_headers.h" | 15 #include "net/tools/balsa/balsa_headers.h" |
| 16 | 16 |
| 17 namespace net { | 17 namespace net { |
| 18 | 18 |
| 19 class QuicSession; | 19 class QuicSession; |
| 20 | 20 |
| 21 namespace tools { | 21 namespace tools { |
| 22 | 22 |
| 23 class QuicClientSession; | 23 class QuicClientSession; |
| 24 | 24 |
| 25 // A base class for spdy/http client streams which handles the concept | 25 // A base class for spdy/http client streams which handles the concept |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 BalsaHeaders headers_; | 57 BalsaHeaders headers_; |
| 58 std::string data_; | 58 std::string data_; |
| 59 | 59 |
| 60 DISALLOW_COPY_AND_ASSIGN(QuicReliableClientStream); | 60 DISALLOW_COPY_AND_ASSIGN(QuicReliableClientStream); |
| 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_CLIENT_STREAM_H_ | 66 #endif // NET_TOOLS_QUIC_QUIC_RELIABLE_CLIENT_STREAM_H_ |
| OLD | NEW |