| Index: net/url_request/url_request_test_job.h
|
| ===================================================================
|
| --- net/url_request/url_request_test_job.h (revision 8697)
|
| +++ net/url_request/url_request_test_job.h (working copy)
|
| @@ -51,7 +51,7 @@
|
|
|
| // Job functions
|
| virtual void Start();
|
| - virtual bool ReadRawData(char* buf, int buf_size, int *bytes_read);
|
| + virtual bool ReadRawData(net::IOBuffer* buf, int buf_size, int *bytes_read);
|
| virtual void Kill();
|
| virtual bool GetMimeType(std::string* mime_type);
|
| virtual void GetResponseInfo(net::HttpResponseInfo* info);
|
| @@ -78,7 +78,7 @@
|
| int offset_;
|
|
|
| // Holds the buffer for an asynchronous ReadRawData call
|
| - char* async_buf_;
|
| + net::IOBuffer* async_buf_;
|
| int async_buf_size_;
|
| };
|
|
|
|
|