| Index: trunk/src/content/browser/loader/stream_resource_handler.cc
|
| ===================================================================
|
| --- trunk/src/content/browser/loader/stream_resource_handler.cc (revision 227593)
|
| +++ trunk/src/content/browser/loader/stream_resource_handler.cc (working copy)
|
| @@ -19,7 +19,7 @@
|
| net::URLRequest* request,
|
| StreamRegistry* registry,
|
| const GURL& origin)
|
| - : ResourceHandler(request),
|
| + : request_(request),
|
| read_buffer_(NULL) {
|
| // TODO(tyoshino): Find a way to share this with the blob URL creation in
|
| // WebKit.
|
| @@ -58,7 +58,7 @@
|
| }
|
|
|
| bool StreamResourceHandler::OnWillRead(int request_id,
|
| - scoped_refptr<net::IOBuffer>* buf,
|
| + net::IOBuffer** buf,
|
| int* buf_size,
|
| int min_size) {
|
| static const int kReadBufSize = 32768;
|
|
|