diff options
Diffstat (limited to 'net/http/http_stream_parser.h')
-rw-r--r-- | net/http/http_stream_parser.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/net/http/http_stream_parser.h b/net/http/http_stream_parser.h index 4ccc6ee..c47d09e 100644 --- a/net/http/http_stream_parser.h +++ b/net/http/http_stream_parser.h @@ -9,6 +9,7 @@ #include "base/basictypes.h" #include "net/base/io_buffer.h" +#include "net/base/load_log.h" #include "net/base/upload_data_stream.h" #include "net/http/http_chunked_decoder.h" #include "net/http/http_response_info.h" @@ -27,7 +28,8 @@ class HttpStreamParser { // buffer's offset will be set to the first free byte. |read_buffer| may // have its capacity changed. HttpStreamParser(ClientSocketHandle* connection, - GrowableIOBuffer* read_buffer); + GrowableIOBuffer* read_buffer, + LoadLog* load_log); ~HttpStreamParser() {} // These functions implement the interface described in HttpStream with @@ -160,6 +162,8 @@ class HttpStreamParser { // The underlying socket. ClientSocketHandle* const connection_; + scoped_refptr<LoadLog> load_log_; + // Callback to be used when doing IO. CompletionCallbackImpl<HttpStreamParser> io_callback_; |