diff options
author | rch@chromium.org <rch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-29 18:41:40 +0000 |
---|---|---|
committer | rch@chromium.org <rch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-29 18:41:40 +0000 |
commit | c638a85ae6661dde9397c17fb17c2d48eb2fe147 (patch) | |
tree | 11157aa6f25057a265cf2c3c91f7d724fbd782f3 /net/http/http_stream_parser.h | |
parent | 524ff896f45f1a36409d32ac024a6db343d3c685 (diff) | |
download | chromium_src-c638a85ae6661dde9397c17fb17c2d48eb2fe147.zip chromium_src-c638a85ae6661dde9397c17fb17c2d48eb2fe147.tar.gz chromium_src-c638a85ae6661dde9397c17fb17c2d48eb2fe147.tar.bz2 |
I've refactored HttpStream, SpdyHttpStream and HttpBasicStream so that
SpdyHttpStream now implements (a slightly wider) HttpStream interface.
BUG=50268
TEST=none
Review URL: http://codereview.chromium.org/3079002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54154 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/http/http_stream_parser.h')
-rw-r--r-- | net/http/http_stream_parser.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/http/http_stream_parser.h b/net/http/http_stream_parser.h index f6a0562..a658ce7 100644 --- a/net/http/http_stream_parser.h +++ b/net/http/http_stream_parser.h @@ -29,15 +29,15 @@ class HttpStreamParser { // buffer's offset will be set to the first free byte. |read_buffer| may // have its capacity changed. HttpStreamParser(ClientSocketHandle* connection, + const HttpRequestInfo* request, GrowableIOBuffer* read_buffer, const BoundNetLog& net_log); ~HttpStreamParser(); // These functions implement the interface described in HttpStream with // some additional functionality - int SendRequest(const HttpRequestInfo* request, const std::string& headers, - UploadDataStream* request_body, HttpResponseInfo* response, - CompletionCallback* callback); + int SendRequest(const std::string& headers, UploadDataStream* request_body, + HttpResponseInfo* response, CompletionCallback* callback); int ReadResponseHeaders(CompletionCallback* callback); |