OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 // HttpBasicStream is a simple implementation of HttpStream. It assumes it is | 5 // HttpBasicStream is a simple implementation of HttpStream. It assumes it is |
6 // not sharing a sharing with any other HttpStreams, therefore it just reads and | 6 // not sharing a sharing with any other HttpStreams, therefore it just reads and |
7 // writes directly to the Http Stream. | 7 // writes directly to the Http Stream. |
8 | 8 |
9 #ifndef NET_HTTP_HTTP_BASIC_STREAM_H_ | 9 #ifndef NET_HTTP_HTTP_BASIC_STREAM_H_ |
10 #define NET_HTTP_HTTP_BASIC_STREAM_H_ | 10 #define NET_HTTP_HTTP_BASIC_STREAM_H_ |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 | 76 |
77 virtual void GetSSLInfo(SSLInfo* ssl_info) OVERRIDE; | 77 virtual void GetSSLInfo(SSLInfo* ssl_info) OVERRIDE; |
78 | 78 |
79 virtual void GetSSLCertRequestInfo( | 79 virtual void GetSSLCertRequestInfo( |
80 SSLCertRequestInfo* cert_request_info) OVERRIDE; | 80 SSLCertRequestInfo* cert_request_info) OVERRIDE; |
81 | 81 |
82 virtual bool IsSpdyHttpStream() const OVERRIDE; | 82 virtual bool IsSpdyHttpStream() const OVERRIDE; |
83 | 83 |
84 virtual void LogNumRttVsBytesMetrics() const OVERRIDE; | 84 virtual void LogNumRttVsBytesMetrics() const OVERRIDE; |
85 | 85 |
| 86 virtual void Drain(HttpNetworkSession* session) OVERRIDE; |
| 87 |
86 private: | 88 private: |
87 scoped_refptr<GrowableIOBuffer> read_buf_; | 89 scoped_refptr<GrowableIOBuffer> read_buf_; |
88 | 90 |
89 scoped_ptr<HttpStreamParser> parser_; | 91 scoped_ptr<HttpStreamParser> parser_; |
90 | 92 |
91 scoped_ptr<ClientSocketHandle> connection_; | 93 scoped_ptr<ClientSocketHandle> connection_; |
92 | 94 |
93 bool using_proxy_; | 95 bool using_proxy_; |
94 | 96 |
95 std::string request_line_; | 97 std::string request_line_; |
96 | 98 |
97 const HttpRequestInfo* request_info_; | 99 const HttpRequestInfo* request_info_; |
98 | 100 |
99 const HttpResponseInfo* response_; | 101 const HttpResponseInfo* response_; |
100 | 102 |
101 int64 bytes_read_offset_; | 103 int64 bytes_read_offset_; |
102 | 104 |
103 DISALLOW_COPY_AND_ASSIGN(HttpBasicStream); | 105 DISALLOW_COPY_AND_ASSIGN(HttpBasicStream); |
104 }; | 106 }; |
105 | 107 |
106 } // namespace net | 108 } // namespace net |
107 | 109 |
108 #endif // NET_HTTP_HTTP_BASIC_STREAM_H_ | 110 #endif // NET_HTTP_HTTP_BASIC_STREAM_H_ |
OLD | NEW |