diff options
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); |