| 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_SPDY_CLIENT_STREAM_H_ | 5 #ifndef NET_TOOLS_QUIC_QUIC_SPDY_CLIENT_STREAM_H_ |
| 6 #define NET_TOOLS_QUIC_QUIC_SPDY_CLIENT_STREAM_H_ | 6 #define NET_TOOLS_QUIC_QUIC_SPDY_CLIENT_STREAM_H_ |
| 7 | 7 |
| 8 #include <sys/types.h> | 8 #include <sys/types.h> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 private: | 69 private: |
| 70 int ParseResponseHeaders(); | 70 int ParseResponseHeaders(); |
| 71 | 71 |
| 72 BalsaHeaders headers_; | 72 BalsaHeaders headers_; |
| 73 std::string data_; | 73 std::string data_; |
| 74 | 74 |
| 75 scoped_refptr<GrowableIOBuffer> read_buf_; | 75 scoped_refptr<GrowableIOBuffer> read_buf_; |
| 76 bool response_headers_received_; | 76 bool response_headers_received_; |
| 77 size_t header_bytes_read_; | 77 size_t header_bytes_read_; |
| 78 size_t header_bytes_written_; | 78 size_t header_bytes_written_; |
| 79 |
| 80 DISALLOW_COPY_AND_ASSIGN(QuicSpdyClientStream); |
| 79 }; | 81 }; |
| 80 | 82 |
| 81 } // namespace tools | 83 } // namespace tools |
| 82 } // namespace net | 84 } // namespace net |
| 83 | 85 |
| 84 #endif // NET_TOOLS_QUIC_QUIC_SPDY_CLIENT_STREAM_H_ | 86 #endif // NET_TOOLS_QUIC_QUIC_SPDY_CLIENT_STREAM_H_ |
| OLD | NEW |